sqlitedataviewsupport.cs
来自「sqlite 3.3.8 支持加密的版本」· CS 代码 · 共 28 行
CS
28 行
/********************************************************
* ADO.NET 2.0 Data Provider for SQLite Version 3.X
* Written by Robert Simpson (robert@blackcastlesoft.com)
*
* Released to the public domain, use at your own risk!
********************************************************/
namespace SQLite.Designer
{
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.VisualStudio.Data;
using Microsoft.VisualStudio.OLE.Interop;
using Microsoft.VisualStudio.Data.AdoDotNet;
/// <summary>
/// Provides DataViewSupport with a location where the XML file is for the Server Explorer's view.
/// </summary>
internal sealed class SQLiteDataViewSupport : DataViewSupport
{
public SQLiteDataViewSupport()
: base("SQLite.Designer.SQLiteDataViewSupport", typeof(SQLiteDataViewSupport).Assembly)
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?