├── License ├── LookLike.PNG ├── README.md └── WPFVsCodeDemo ├── .vs └── WPFVsCodeDemo │ ├── v14 │ └── .suo │ └── v15 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── WPFVsCode ├── Behavior │ └── ControlExt.cs ├── Controls │ ├── FrameTabCtrl │ │ ├── FrameTabControl.cs │ │ └── FrameTabItem.cs │ ├── GroupBoxExtend │ │ └── GroupBoxExtend.cs │ ├── HandyControl移植 │ │ └── NotifyIcon.cs │ ├── SideTabControl │ │ ├── SideTabControl.cs │ │ ├── SideTabItem.cs │ │ └── SideTabSizeResiger.cs │ ├── TreeComboBox │ │ ├── TreeComboBox.xaml │ │ └── TreeComboBox.xaml.cs │ └── Window │ │ └── CusWindow.cs ├── Helper │ └── WPFUIElementHelper.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Styles │ ├── Styles.ScrollViewer.List.xaml │ ├── Styles.ScrollViewer.Menu.xaml │ ├── Styles.TreeViewer.xaml │ └── Styles.VerticalMenu.xaml ├── Themes │ └── Generic.xaml ├── WPFVsCode.csproj ├── WPFVsCode.csproj.user ├── bin │ └── Debug │ │ ├── WPFVsCode.dll │ │ └── WPFVsCode.pdb └── obj │ └── Debug │ ├── Controls │ ├── AutoCompleteComboBox │ │ └── AutoCompleteComboBox.g.i.cs │ ├── Loading │ │ ├── LoadingRectangle.g.i.cs │ │ ├── LoadingWait.g.i.cs │ │ └── SimpleLoading.g.i.cs │ ├── MyDateTimeControl │ │ ├── TDateTimeView.g.i.cs │ │ ├── THourView.g.i.cs │ │ ├── TMinSexView.g.i.cs │ │ └── myTimePicker.g.i.cs │ ├── NumericUpDown │ │ └── NumericUpDown.g.i.cs │ ├── TimeSpanBox │ │ └── TimeSpanBox.g.i.cs │ └── TreeComboBox │ │ ├── TreeComboBox.g.cs │ │ └── TreeComboBox.g.i.cs │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GeneratedInternalTypeHelper.g.cs │ ├── GeneratedInternalTypeHelper.g.i.cs │ ├── Styles │ ├── Styles.ScrollViewer.List.baml │ ├── Styles.ScrollViewer.Menu.baml │ └── Styles.TreeViewer.baml │ ├── TempPE │ └── Properties.Resources.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── WPFVsCode.Properties.Resources.resources │ ├── WPFVsCode.csproj.CoreCompileInputs.cache │ ├── WPFVsCode.csproj.FileListAbsolute.txt │ ├── WPFVsCode.csproj.GenerateResource.Cache │ ├── WPFVsCode.csprojAssemblyReference.cache │ ├── WPFVsCode.csprojResolveAssemblyReference.cache │ ├── WPFVsCode.dll │ ├── WPFVsCode.g.resources │ ├── WPFVsCode.pdb │ ├── WPFVsCode_MarkupCompile.cache │ ├── WPFVsCode_MarkupCompile.i.cache │ └── WPFVsCode_MarkupCompile.lref ├── WPFVsCodeDemo.sln └── WPFVsCode_Demo ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── VsCodeIcon.ico ├── WPFVsCode_Demo.csproj ├── WPFVsCode_Demo.csproj.user ├── app.config ├── bin └── Debug │ ├── WPFVsCode.dll │ ├── WPFVsCode.pdb │ ├── WPFVsCode_Demo.exe │ ├── WPFVsCode_Demo.exe.config │ ├── WPFVsCode_Demo.pdb │ ├── WPFVsCode_Demo.vshost.exe │ ├── WPFVsCode_Demo.vshost.exe.config │ └── WPFVsCode_Demo.vshost.exe.manifest └── obj └── Debug ├── App.g.cs ├── App.g.i.cs ├── DesignTimeResolveAssemblyReferencesInput.cache ├── MainWindow.g.cs ├── MainWindow.g.i.cs ├── TempPE └── Properties.Resources.Designer.cs.dll ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── WPFVsCode_Demo.Properties.Resources.resources ├── WPFVsCode_Demo.csproj.CoreCompileInputs.cache ├── WPFVsCode_Demo.csproj.FileListAbsolute.txt ├── WPFVsCode_Demo.csproj.GenerateResource.Cache ├── WPFVsCode_Demo.csprojAssemblyReference.cache ├── WPFVsCode_Demo.csprojResolveAssemblyReference.cache ├── WPFVsCode_Demo.exe ├── WPFVsCode_Demo.g.resources ├── WPFVsCode_Demo.pdb ├── WPFVsCode_Demo_Content.g.i.cs ├── WPFVsCode_Demo_MarkupCompile.cache ├── WPFVsCode_Demo_MarkupCompile.i.cache └── WPFVsCode_Demo_MarkupCompile.lref /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/License -------------------------------------------------------------------------------- /LookLike.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/LookLike.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/README.md -------------------------------------------------------------------------------- /WPFVsCodeDemo/.vs/WPFVsCodeDemo/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/.vs/WPFVsCodeDemo/v14/.suo -------------------------------------------------------------------------------- /WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/.suo -------------------------------------------------------------------------------- /WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/.vs/WPFVsCodeDemo/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Behavior/ControlExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Behavior/ControlExt.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/FrameTabCtrl/FrameTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/FrameTabCtrl/FrameTabControl.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/FrameTabCtrl/FrameTabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/FrameTabCtrl/FrameTabItem.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/GroupBoxExtend/GroupBoxExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/GroupBoxExtend/GroupBoxExtend.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/HandyControl移植/NotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/HandyControl移植/NotifyIcon.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/SideTabControl/SideTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/SideTabControl/SideTabControl.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/SideTabControl/SideTabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/SideTabControl/SideTabItem.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/SideTabControl/SideTabSizeResiger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/SideTabControl/SideTabSizeResiger.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/TreeComboBox/TreeComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/TreeComboBox/TreeComboBox.xaml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/TreeComboBox/TreeComboBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/TreeComboBox/TreeComboBox.xaml.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Controls/Window/CusWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Controls/Window/CusWindow.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Helper/WPFUIElementHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Helper/WPFUIElementHelper.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Properties/Resources.resx -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Properties/Settings.settings -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Styles/Styles.ScrollViewer.List.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Styles/Styles.ScrollViewer.List.xaml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Styles/Styles.ScrollViewer.Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Styles/Styles.ScrollViewer.Menu.xaml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Styles/Styles.TreeViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Styles/Styles.TreeViewer.xaml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Styles/Styles.VerticalMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Styles/Styles.VerticalMenu.xaml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/Themes/Generic.xaml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/WPFVsCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/WPFVsCode.csproj -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/WPFVsCode.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/WPFVsCode.csproj.user -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/bin/Debug/WPFVsCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/bin/Debug/WPFVsCode.dll -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/bin/Debug/WPFVsCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/bin/Debug/WPFVsCode.pdb -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/AutoCompleteComboBox/AutoCompleteComboBox.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/AutoCompleteComboBox/AutoCompleteComboBox.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/Loading/LoadingRectangle.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/Loading/LoadingRectangle.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/Loading/LoadingWait.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/Loading/LoadingWait.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/Loading/SimpleLoading.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/Loading/SimpleLoading.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/MyDateTimeControl/TDateTimeView.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/MyDateTimeControl/TDateTimeView.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/MyDateTimeControl/THourView.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/MyDateTimeControl/THourView.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/MyDateTimeControl/TMinSexView.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/MyDateTimeControl/TMinSexView.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/MyDateTimeControl/myTimePicker.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/MyDateTimeControl/myTimePicker.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/NumericUpDown/NumericUpDown.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/NumericUpDown/NumericUpDown.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/TimeSpanBox/TimeSpanBox.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/TimeSpanBox/TimeSpanBox.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/TreeComboBox/TreeComboBox.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/TreeComboBox/TreeComboBox.g.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/TreeComboBox/TreeComboBox.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Controls/TreeComboBox/TreeComboBox.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/GeneratedInternalTypeHelper.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/GeneratedInternalTypeHelper.g.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/GeneratedInternalTypeHelper.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/GeneratedInternalTypeHelper.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Styles/Styles.ScrollViewer.List.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Styles/Styles.ScrollViewer.List.baml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Styles/Styles.ScrollViewer.Menu.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Styles/Styles.ScrollViewer.Menu.baml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/Styles/Styles.TreeViewer.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/Styles/Styles.TreeViewer.baml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.Properties.Resources.resources -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8c420400f2e2874b78ae8adffed6089c3df81aed 2 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.dll -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.g.resources -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode.pdb -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode_MarkupCompile.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode_MarkupCompile.i.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode/obj/Debug/WPFVsCode_MarkupCompile.lref -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCodeDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCodeDemo.sln -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/App.xaml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/App.xaml.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/MainWindow.xaml -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/VsCodeIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/VsCodeIcon.ico -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/WPFVsCode_Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/WPFVsCode_Demo.csproj -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/WPFVsCode_Demo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/WPFVsCode_Demo.csproj.user -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/app.config -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode.dll -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode.pdb -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.exe -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.exe.config -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.pdb -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.vshost.exe -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.vshost.exe.config -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/bin/Debug/WPFVsCode_Demo.vshost.exe.manifest -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.Properties.Resources.resources -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f4f8f1dbb4ea7992250268f36bca09343cae8e3e 2 | -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.exe -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.g.resources -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo.pdb -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo_Content.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo_Content.g.i.cs -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo_MarkupCompile.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo_MarkupCompile.i.cache -------------------------------------------------------------------------------- /WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chen-Lin-Zhao-Wei/WPFLikeVSCode/HEAD/WPFVsCodeDemo/WPFVsCode_Demo/obj/Debug/WPFVsCode_Demo_MarkupCompile.lref --------------------------------------------------------------------------------