⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sharpreportaddin.addin

📁 SharpDevelop2.0.0 c#开发免费工具
💻 ADDIN
字号:
<AddIn name        = "SharpReport"
       author      = "Forstmeier Peter"
       url         = ""
       description = "Reporting tool for SharpDevelop">
	
	<Manifest>
		<Identity name="ICSharpCode.SharpReport"/>
		<Dependency addin="ICSharpCode.SharpQuery"/>
	</Manifest>
	
	<Runtime>
		<!-- need to load from correct directory SharpQuery first -->
		<Import assembly = "$ICSharpCode.SharpQuery/SharpQuery.dll" />
		<Import assembly = "SharpReportAddin.dll"/>
	</Runtime>
	
	<!-- DisplayBinding -->
	
	<Path name ="/SharpDevelop/Workbench/DisplayBindings">
		<DisplayBinding id="SharpReportBinding"
		                insertbefore="Text"
		                fileNamePattern="\.srd$"
		                languagePattern="^SharpReport$"
		                class="SharpReportAddin.SharpReportDisplayBinding"/>
	</Path>
	
	<!-- File Filter -->
	<Path name ="/SharpDevelop/Workbench/FileFilter">
		<FileFilter id="SharpReport"
		            insertbefore="AllFiles"
		            name="SharpReport (*.srd)"
		            extensions="*.srd"/>
	</Path>
	
	<!-- FieldsExplorer -->
	<Path name ="/SharpDevelop/Workbench/Pads">
			<Pad id="fieldsexplorer"
			     icon="Icons.16x16.SharpQuery.Refresh"
			     title = "${res:SharpReport.FieldsExplorer.Title}"
			     shortcut = "Control|Alt|F"
			     class="SharpReportAddin.FieldsExplorer"/>
	</Path>
	
	<!-- ContectMenu Section -->
	<Path name ="/SharpReport/ContextMenu/Section">
		<MenuItem id="settings" label="${res:SharpReport.ContextMenu.Settings}" class="SharpReportAddin.Commands.ShowSettings"/>
		<MenuItem id="preview" label="${res:SharpReport.ContextMenu.Preview}" class="SharpReportAddin.Commands.RunPreview"/>
<!--
		<MenuItem id="sep1" label="-"/>
		<MenuItem id="visible" label="${res:SharpReport.ContextMenu.SectionVisible}" class="SharpReportAddin.Commands.SectionVisible"/>
		<MenuItem id="function" label="${res:SharpReport.ContextMenu.Functions}" class="SharpReportAddin.Commands.InsertFunction"/>
		
   	<MenuItem id="fieldslist" label="${res:SharpReport.ContextMenu.FieldsList}" class="SharpReportAddin.Commands.ShowFieldsList"/>
 		-->
	</Path>

	 <!-- ContextMenu Items -->
   <Path name ="/SharpReport/ContextMenu/Items">
      <MenuItem id="cut" label="${res:SharpReport.ContextMenu.Cut}" class="SharpReportAddin.Commands.CutReportItem"/>
     <!--
   	  <MenuItem id="paste" label="${res:SharpReport.ContextMenu.Paste}" class="SharpReportAddin.Commands.PasteReportItem"/>
   		-->
   </Path>

   <!-- Fields Explorer ContextMenu's -->
	<Path name ="/SharpReport/ContextMenu/ContextMenu/FieldsExplorer/SectionTreeNode">
		<MenuItem id="removenodes"
		          label="${res:SharpReport.FieldsExplorer.ContextMenu.Section.Clear}"
		          class="SharpReportAddin.Commands.ClearNodes"/>
	</Path>
	
	<Path name = "/SharpReport/ContextMenu/ContextMenu/FieldsExplorer/ColumnTreeNode">
		<MenuItem id="removenode"
		          label="${res:SharpReport.FieldsExplorer.ContextMenu.Columns.Remove}"
		          class="SharpReportAddin.Commands.RemoveNode"/>
		<MenuItem id="toggle"
		          label="${res:SharpReport.FieldsExplorer.ContextMenu.Columns.ToggleSort}"
		          class="SharpReportAddin.Commands.ToogleOrder"/>
	</Path>

	<Path name = "/Workspace/Tools">
		<MenuItem id       = "ReportGeneratorPad"
		          label = "${res:SharpReport.ReportGenerator}"
		          
		          shortcut = "Control|Alt|T"
		          class    = "SharpReportAddin.Commands.RunSharpReport"/>
	</Path>
</AddIn>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -