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

📄 sharpquery.addin

📁 全功能c#编译器
💻 ADDIN
字号:
<AddIn name        = "SharpQuery"
       author      = "Denis ERCHOFF"
       copyright   = "GPL"
       url         = "http://www.icsharpcode.net"
       description = "SharpQuery"
       version     = "0.0.1">
    
    <Runtime>
        <Import assembly="SharpQuery.dll"/>
    </Runtime>
    

    <Extension path = "/SharpQuery/Connection">
     <Class id = "ConnectionWrapper" 
	    	class = "SharpQuery.Connection.OLEDBConnectionWrapper"/>
	 <SharpQueryConnection id ="Column"
	 		schema="SharpQuery.SchemaClass.SharpQueryColumn"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeColumn"
			showUnsuported = "False"/>	 		
	 <SharpQueryConnection id ="Parameter"
	 		schema="SharpQuery.SchemaClass.SharpQueryParameter"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeParameter"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="Procedure"
	 		schema="SharpQuery.SchemaClass.SharpQueryProcedure"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeProcedure"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="Table"
	 		schema="SharpQuery.SchemaClass.SharpQueryTable"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeTable"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="View"
	 		schema="SharpQuery.SchemaClass.SharpQueryView"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeView"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="NotSupported"
	 		schema="SharpQuery.SchemaClass.SharpQueryNotSupported"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeNotSupported"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="Tables"
	 		schema="SharpQuery.SchemaClass.SharpQueryTables"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeTableRoot"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="Views"
	 		schema="SharpQuery.SchemaClass.SharpQueryViews"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeViewRoot"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="Procedures"
	 		schema="SharpQuery.SchemaClass.SharpQueryProcedures"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeProcedureRoot"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="Schema"
	 		schema="SharpQuery.SchemaClass.SharpQuerySchema"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeSchema"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="Catalog"
	 		schema="SharpQuery.SchemaClass.SharpQueryCatalog"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeCatalog"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="OLEDB"
	 		schema="SharpQuery.Connection.OLEDBConnectionWrapper"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeConnection"
			showUnsuported = "False"/>
	 <SharpQueryConnection id ="ADO"
	 		schema="SharpQuery.Connection.ADOConnectionWrapper"
	 		node ="SharpQuery.Gui.TreeView.SharpQueryNodeConnection"
			showUnsuported = "False"/>
    </Extension>


    <Extension path = "/SharpDevelop/Workbench/Views">
     <Class id    = "SharpQuery" 
	    insertafter = "HelpBrowser"
            class = "SharpQuery.Pads.SharpQueryView"/>
    </Extension>


	<Extension path = "/SharpQuery/ContextMenu/DatabaseRoot">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
		<MenuItem id = "Separator1" 
			  label = "-" />
		<MenuItem id = "AddConnection"
		          label = "${res:SharpQuery.Label.AddConnection}"
		          icon = "Icons.16x16.SharpQuery.AddConnection"
		          class = "SharpQuery.Commands.SharpQueryAddconnectionCommand"/>		

	</Extension>

	<Extension path = "/SharpQuery/ContextMenu/DatabaseConnection">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
		<MenuItem id = "Separator1" 
			  label = "-" />	
		<MenuItem id = "Supprimer"
		          label = "${res:SharpQuery.Label.Remove}"
			  icon="Icons.16x16.SharpQuery.Remove"
		          class = "SharpQuery.Commands.SharpQueryRemoveConnectionCommand"/>	
		<MenuItem id = "Separator2" 
			  label = "-" />
		<MenuItem id = "ModifyConnection"
		          label = "${res:SharpQuery.Label.ModifyConnection}"
		          class = "SharpQuery.Commands.SharpQueryModifyConnectionCommand"/>
		<MenuItem id = "Disconnect"
		          label = "${res:SharpQuery.Label.Disconnect}"
		          class = "SharpQuery.Commands.SharpQueryDisconnectCommand"/>
		<MenuItem id = "Connect"
		          label = "${res:SharpQuery.Label.Connect}"
		          class = "SharpQuery.Commands.SharpQueryConnectCommand"/>
	</Extension>

	<Extension path = "/SharpQuery/ContextMenu/TablesRoot">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
	</Extension>

	<Extension path = "/SharpQuery/ContextMenu/ViewsRoot">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
	</Extension>

	<Extension path = "/SharpQuery/ContextMenu/ProceduresRoot">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
	</Extension>


	<Extension path = "/SharpQuery/ContextMenu/Table">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
		<MenuItem id = "ExtractData"
		          label = "${res:SharpQuery.Label.ExtractData}"
		          class = "SharpQuery.Commands.SharpQueryExecuteCommand"/>		          
	</Extension>

	<Extension path = "/SharpQuery/ContextMenu/View">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
		<MenuItem id = "ExtractData"
		          label = "${res:SharpQuery.Label.ExtractData}"
		          class = "SharpQuery.Commands.SharpQueryExecuteCommand"/>		          
	</Extension>


	<Extension path = "/SharpQuery/ContextMenu/Procedure">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
		<MenuItem id = "ExecuteProcedure"
		          label = "${res:SharpQuery.Label.Execute}"
		          class = "SharpQuery.Commands.SharpQueryExecuteCommand"/>
	</Extension>


	<Extension path = "/SharpQuery/ContextMenu/Coulmn">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
	</Extension>

	<Extension path = "/SharpQuery/ContextMenu/Parameter">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
	</Extension>

	<Extension path = "/SharpQuery/ContextMenu/Catalog">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
	</Extension>
	
	<Extension path = "/SharpQuery/ContextMenu/Schema">
		<MenuItem id = "Refresh"
		          label = "${res:SharpQuery.Label.Refresh}"
		          icon = "Icons.16x16.SharpQuery.Refresh"
		          class = "SharpQuery.Commands.SharpQueryRefreshCommand"/>		
	</Extension>
	

</AddIn>

⌨️ 快捷键说明

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