├── .gitignore ├── EfCoreUI.vsix ├── EfCoreUi.sln ├── EfCoreUi ├── .idea │ ├── .idea.TestMenu.dir │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── indexLayout.xml │ │ │ └── vcs.xml │ └── easycode.ignore ├── AllCommand.cs ├── ContactUsForm.Designer.cs ├── ContactUsForm.cs ├── ContactUsForm.resx ├── EfCoreUi.csproj ├── EfCoreUiPackage.cs ├── EfCoreUiPackage.vsct ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Form2.Designer.cs ├── Form2.cs ├── Form2.resx ├── Form3.Designer.cs ├── Form3.cs ├── Form3.resx ├── HelperExtentions.cs ├── MemoryParameter.cs ├── OprationModeEnum.cs ├── PreServeService.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── Command1.png └── source.extension.vsixmanifest └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/.gitignore -------------------------------------------------------------------------------- /EfCoreUI.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUI.vsix -------------------------------------------------------------------------------- /EfCoreUi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi.sln -------------------------------------------------------------------------------- /EfCoreUi/.idea/.idea.TestMenu.dir/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/.idea/.idea.TestMenu.dir/.idea/.gitignore -------------------------------------------------------------------------------- /EfCoreUi/.idea/.idea.TestMenu.dir/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/.idea/.idea.TestMenu.dir/.idea/indexLayout.xml -------------------------------------------------------------------------------- /EfCoreUi/.idea/.idea.TestMenu.dir/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/.idea/.idea.TestMenu.dir/.idea/vcs.xml -------------------------------------------------------------------------------- /EfCoreUi/.idea/easycode.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/.idea/easycode.ignore -------------------------------------------------------------------------------- /EfCoreUi/AllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/AllCommand.cs -------------------------------------------------------------------------------- /EfCoreUi/ContactUsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/ContactUsForm.Designer.cs -------------------------------------------------------------------------------- /EfCoreUi/ContactUsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/ContactUsForm.cs -------------------------------------------------------------------------------- /EfCoreUi/ContactUsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/ContactUsForm.resx -------------------------------------------------------------------------------- /EfCoreUi/EfCoreUi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/EfCoreUi.csproj -------------------------------------------------------------------------------- /EfCoreUi/EfCoreUiPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/EfCoreUiPackage.cs -------------------------------------------------------------------------------- /EfCoreUi/EfCoreUiPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/EfCoreUiPackage.vsct -------------------------------------------------------------------------------- /EfCoreUi/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form1.Designer.cs -------------------------------------------------------------------------------- /EfCoreUi/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form1.cs -------------------------------------------------------------------------------- /EfCoreUi/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form1.resx -------------------------------------------------------------------------------- /EfCoreUi/Form2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form2.Designer.cs -------------------------------------------------------------------------------- /EfCoreUi/Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form2.cs -------------------------------------------------------------------------------- /EfCoreUi/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form2.resx -------------------------------------------------------------------------------- /EfCoreUi/Form3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form3.Designer.cs -------------------------------------------------------------------------------- /EfCoreUi/Form3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form3.cs -------------------------------------------------------------------------------- /EfCoreUi/Form3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Form3.resx -------------------------------------------------------------------------------- /EfCoreUi/HelperExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/HelperExtentions.cs -------------------------------------------------------------------------------- /EfCoreUi/MemoryParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/MemoryParameter.cs -------------------------------------------------------------------------------- /EfCoreUi/OprationModeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/OprationModeEnum.cs -------------------------------------------------------------------------------- /EfCoreUi/PreServeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/PreServeService.cs -------------------------------------------------------------------------------- /EfCoreUi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EfCoreUi/Resources/Command1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/Resources/Command1.png -------------------------------------------------------------------------------- /EfCoreUi/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/EfCoreUi/source.extension.vsixmanifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Afrino-co/EfCoreUI/HEAD/README.md --------------------------------------------------------------------------------