├── .gitattributes ├── Asset └── Screenshot.png ├── Build └── ADK.Console.exe ├── README.md └── Source ├── .vs └── ADK.Console │ └── v15 │ └── .suo ├── ADK.Console.sln └── WpfCMD ├── App.config ├── App.xaml ├── App.xaml.cs ├── Console.csproj ├── Console.csproj.user ├── Console.xaml ├── Console.xaml.cs ├── ConsoleControl.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── bin └── Debug │ └── ADK.Console.exe └── obj └── Debug ├── ADK.Console.Properties.Resources.resources ├── ADK.Console.exe ├── ADK.Console.g.resources ├── ADK.Console.pdb ├── ADK.Console_MarkupCompile.cache ├── ADK.Console_MarkupCompile.i.cache ├── ADK.Console_MarkupCompile.i.lref ├── ADK.Console_MarkupCompile.lref ├── App.g.cs ├── App.g.i.cs ├── CMD.g.i.cs ├── Console.baml ├── Console.csproj.FileListAbsolute.txt ├── Console.csproj.GenerateResource.Cache ├── Console.csprojResolveAssemblyReference.cache ├── Console.g.cs ├── Console.g.i.cs ├── CoreCompileInputs.cache ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── GeneratedInternalTypeHelper.g.cs ├── GeneratedInternalTypeHelper.g.i.cs ├── MainWindow.baml ├── 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 ├── WPFcmd.g.i.cs ├── WpfCMD.Properties.Resources.resources ├── WpfCMD.csproj.FileListAbsolute.txt ├── WpfCMD.csproj.GenerateResource.Cache ├── WpfCMD.csprojResolveAssemblyReference.cache ├── WpfCMD.exe ├── WpfCMD.g.resources ├── WpfCMD.pdb ├── WpfCMD_Content.g.i.cs ├── WpfCMD_MarkupCompile.cache ├── WpfCMD_MarkupCompile.i.cache ├── WpfCMD_MarkupCompile.i.lref └── WpfCMD_MarkupCompile.lref /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /Asset/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Asset/Screenshot.png -------------------------------------------------------------------------------- /Build/ADK.Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Build/ADK.Console.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WPF-Console 2 | 3 | This is a WPF component that allow you to add a console panel for your application. 4 | 5 | ![Console Screenshot](https://github.com/Asixa/WPF-Console/blob/master/Asset/Screenshot.png?raw=true "ConsoleControl Screenshot") 6 | -------------------------------------------------------------------------------- /Source/.vs/ADK.Console/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/.vs/ADK.Console/v15/.suo -------------------------------------------------------------------------------- /Source/ADK.Console.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.26403.7 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Console", "WpfCMD\Console.csproj", "{3852A77E-218C-4F76-8BCB-41CF6A4AF693}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3852A77E-218C-4F76-8BCB-41CF6A4AF693}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3852A77E-218C-4F76-8BCB-41CF6A4AF693}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3852A77E-218C-4F76-8BCB-41CF6A4AF693}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3852A77E-218C-4F76-8BCB-41CF6A4AF693}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Source/WpfCMD/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Source/WpfCMD/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Source/WpfCMD/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace WpfCMD 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Source/WpfCMD/Console.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {3852A77E-218C-4F76-8BCB-41CF6A4AF693} 8 | WinExe 9 | ADK.Console 10 | ADK.Console 11 | v4.5.2 12 | 512 13 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 14 | 4 15 | true 16 | 17 | 18 | AnyCPU 19 | true 20 | full 21 | false 22 | bin\Debug\ 23 | DEBUG;TRACE 24 | prompt 25 | 4 26 | 27 | 28 | AnyCPU 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 4.0 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | MSBuild:Compile 58 | Designer 59 | 60 | 61 | Console.xaml 62 | 63 | 64 | MSBuild:Compile 65 | Designer 66 | 67 | 68 | App.xaml 69 | Code 70 | 71 | 72 | MainWindow.xaml 73 | Code 74 | 75 | 76 | Designer 77 | MSBuild:Compile 78 | 79 | 80 | 81 | 82 | Code 83 | 84 | 85 | True 86 | True 87 | Resources.resx 88 | 89 | 90 | True 91 | Settings.settings 92 | True 93 | 94 | 95 | ResXFileCodeGenerator 96 | Resources.Designer.cs 97 | 98 | 99 | SettingsSingleFileGenerator 100 | Settings.Designer.cs 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /Source/WpfCMD/Console.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Source/WpfCMD/Console.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /Source/WpfCMD/Console.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Controls; 3 | using System.Windows.Input; 4 | using System.Diagnostics; 5 | using System.Windows; 6 | using System.Collections.Generic; 7 | namespace ADK.Console 8 | { 9 | public partial class Console : UserControl 10 | { 11 | Process process; 12 | ProcessStartInfo psi; 13 | 14 | #region Core 15 | public Console() 16 | { 17 | InitializeComponent(); 18 | psi = new ProcessStartInfo() 19 | { 20 | CreateNoWindow = true, 21 | RedirectStandardOutput = true, 22 | RedirectStandardInput = true, 23 | RedirectStandardError = true, 24 | FileName = "cmd.exe", 25 | UseShellExecute = false 26 | }; 27 | process = Process.Start(psi); 28 | process.OutputDataReceived += OutputDataReceived; 29 | process.ErrorDataReceived += ErrorDataReceived; 30 | process.BeginOutputReadLine(); 31 | process.BeginErrorReadLine(); 32 | } 33 | 34 | void ConsoleWrite(string s) 35 | { 36 | if (s.ToLower() == "cls") 37 | { 38 | Output.Text = ""; 39 | return; 40 | } 41 | process.StandardInput.WriteLine(s); 42 | } 43 | 44 | void ConsoleRead(string s) 45 | { 46 | Output.Text = Output.Text + s + Environment.NewLine; 47 | } 48 | 49 | private void textBox_KeyDown(object sender, KeyEventArgs e) 50 | { 51 | if(e.Key == Key.Enter) 52 | { 53 | if (Input.Text == "") return; 54 | ConsoleWrite(Input.Text); 55 | Input.Text = ""; 56 | 57 | } 58 | } 59 | List result = new List(); 60 | 61 | void OutputDataReceived(object sender, DataReceivedEventArgs e) 62 | { 63 | 64 | Output.Dispatcher.BeginInvoke(new Action(() => 65 | { 66 | string newline = e.Data + Environment.NewLine; 67 | Output.Text = Output.Text.Replace(Environment.NewLine + Environment.NewLine, Environment.NewLine) + newline; 68 | Output.ScrollToEnd(); 69 | result.Add(newline); 70 | 71 | })); 72 | 73 | 74 | } 75 | 76 | void ErrorDataReceived(object sender, DataReceivedEventArgs e) 77 | { 78 | Output.Dispatcher.BeginInvoke(new Action(() => 79 | { 80 | string newline = e.Data + Environment.NewLine; 81 | Output.Text = Output.Text.Replace(Environment.NewLine + Environment.NewLine, Environment.NewLine) + newline; 82 | Output.ScrollToEnd(); 83 | result.Add(newline); 84 | })); 85 | 86 | } 87 | #endregion 88 | 89 | public List GetNewestResult() 90 | { 91 | List _return = result; 92 | _return.Remove(_return[0]); 93 | return _return; 94 | } 95 | public void AddCommand(string cmd) 96 | { 97 | ConsoleWrite(cmd); 98 | } 99 | 100 | 101 | } 102 | } 103 | -------------------------------------------------------------------------------- /Source/WpfCMD/ConsoleControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/ConsoleControl.png -------------------------------------------------------------------------------- /Source/WpfCMD/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Source/WpfCMD/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace ADK.Console 17 | { 18 | /// 19 | /// MainWindow.xaml 的交互逻辑 20 | /// 21 | public partial class MainWindow : Window 22 | { 23 | 24 | public MainWindow() 25 | { 26 | 27 | InitializeComponent(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Source/WpfCMD/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // 有关程序集的一般信息由以下 8 | // 控制。更改这些特性值可修改 9 | // 与程序集关联的信息。 10 | [assembly: AssemblyTitle("WpfCMD")] 11 | [assembly: AssemblyDescription("")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("")] 14 | [assembly: AssemblyProduct("WpfCMD")] 15 | [assembly: AssemblyCopyright("Copyright © 2017")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // 将 ComVisible 设置为 false 会使此程序集中的类型 20 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 21 | //请将此类型的 ComVisible 特性设置为 true。 22 | [assembly: ComVisible(false)] 23 | 24 | //若要开始生成可本地化的应用程序,请设置 25 | //.csproj 文件中的 CultureYouAreCodingWith 26 | //例如,如果您在源文件中使用的是美国英语, 27 | //使用的是美国英语,请将 设置为 en-US。 然后取消 28 | //对以下 NeutralResourceLanguage 特性的注释。 更新 29 | //以下行中的“en-US”以匹配项目文件中的 UICulture 设置。 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly: ThemeInfo( 35 | ResourceDictionaryLocation.None, //主题特定资源词典所处位置 36 | //(未在页面中找到资源时使用, 37 | //或应用程序资源字典中找到时使用) 38 | ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置 39 | //(未在页面中找到资源时使用, 40 | //、应用程序或任何主题专用资源字典中找到时使用) 41 | )] 42 | 43 | 44 | // 程序集的版本信息由下列四个值组成: 45 | // 46 | // 主版本 47 | // 次版本 48 | // 生成号 49 | // 修订号 50 | // 51 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 52 | // 方法是按如下所示使用“*”: : 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | [assembly: AssemblyVersion("1.0.0.0")] 55 | [assembly: AssemblyFileVersion("1.0.0.0")] 56 | -------------------------------------------------------------------------------- /Source/WpfCMD/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ADK.Console.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// 一个强类型的资源类,用于查找本地化的字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// 返回此类使用的缓存的 ResourceManager 实例。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ADK.Console.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// 使用此强类型资源类,为所有资源查找 51 | /// 重写当前线程的 CurrentUICulture 属性。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Source/WpfCMD/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /Source/WpfCMD/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ADK.Console.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.1.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Source/WpfCMD/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Source/WpfCMD/bin/Debug/ADK.Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/bin/Debug/ADK.Console.exe -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/ADK.Console.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/ADK.Console.Properties.Resources.resources -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/ADK.Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/ADK.Console.exe -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/ADK.Console.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/ADK.Console.g.resources -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/ADK.Console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/ADK.Console.pdb -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/ADK.Console_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | ADK.Console 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\ 8 | ADK.Console 9 | none 10 | false 11 | DEBUG;TRACE 12 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\App.xaml 13 | 22141950032 14 | 15 | 6-544144855 16 | 13738642453 17 | MainWindow.xaml;Console.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/ADK.Console_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | ADK.Console 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\ 8 | ADK.Console 9 | none 10 | false 11 | DEBUG;TRACE 12 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\App.xaml 13 | 22141950032 14 | 15 | 101881976396 16 | 13738642453 17 | MainWindow.xaml;Console.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/ADK.Console_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\GeneratedInternalTypeHelper.g.i.cs 2 | 3 | FE:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\MainWindow.xaml;; 4 | FE:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\Console.xaml;; 5 | 6 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/ADK.Console_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\GeneratedInternalTypeHelper.g.cs 2 | 3 | FE:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\MainWindow.xaml;; 4 | FE:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\Console.xaml;; 5 | 6 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "BDF8CAB6002CB83CE6B5EEB2D948877C" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | using WpfCMD; 33 | 34 | 35 | namespace WpfCMD { 36 | 37 | 38 | /// 39 | /// App 40 | /// 41 | public partial class App : System.Windows.Application { 42 | 43 | /// 44 | /// InitializeComponent 45 | /// 46 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 47 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 48 | public void InitializeComponent() { 49 | 50 | #line 5 "..\..\App.xaml" 51 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 52 | 53 | #line default 54 | #line hidden 55 | } 56 | 57 | /// 58 | /// Application Entry Point. 59 | /// 60 | [System.STAThreadAttribute()] 61 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 62 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 63 | public static void Main() { 64 | WpfCMD.App app = new WpfCMD.App(); 65 | app.InitializeComponent(); 66 | app.Run(); 67 | } 68 | } 69 | } 70 | 71 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "BDF8CAB6002CB83CE6B5EEB2D948877C" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | using WpfCMD; 33 | 34 | 35 | namespace WpfCMD { 36 | 37 | 38 | /// 39 | /// App 40 | /// 41 | public partial class App : System.Windows.Application { 42 | 43 | /// 44 | /// InitializeComponent 45 | /// 46 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 47 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 48 | public void InitializeComponent() { 49 | 50 | #line 5 "..\..\App.xaml" 51 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 52 | 53 | #line default 54 | #line hidden 55 | } 56 | 57 | /// 58 | /// Application Entry Point. 59 | /// 60 | [System.STAThreadAttribute()] 61 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 62 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 63 | public static void Main() { 64 | WpfCMD.App app = new WpfCMD.App(); 65 | app.InitializeComponent(); 66 | app.Run(); 67 | } 68 | } 69 | } 70 | 71 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/CMD.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\CMD.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "03FE6BB591F69F661E1C7303A7E68CF1" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | using WpfCMD; 33 | 34 | 35 | namespace WpfCMD { 36 | 37 | 38 | /// 39 | /// CMD 40 | /// 41 | public partial class CMD : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 10 "..\..\CMD.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal System.Windows.Controls.TextBox Input; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 11 "..\..\CMD.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.TextBox Output; 55 | 56 | #line default 57 | #line hidden 58 | 59 | private bool _contentLoaded; 60 | 61 | /// 62 | /// InitializeComponent 63 | /// 64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 66 | public void InitializeComponent() { 67 | if (_contentLoaded) { 68 | return; 69 | } 70 | _contentLoaded = true; 71 | System.Uri resourceLocater = new System.Uri("/WpfCMD;component/cmd.xaml", System.UriKind.Relative); 72 | 73 | #line 1 "..\..\CMD.xaml" 74 | System.Windows.Application.LoadComponent(this, resourceLocater); 75 | 76 | #line default 77 | #line hidden 78 | } 79 | 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 82 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 83 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 86 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 87 | switch (connectionId) 88 | { 89 | case 1: 90 | this.Input = ((System.Windows.Controls.TextBox)(target)); 91 | 92 | #line 10 "..\..\CMD.xaml" 93 | this.Input.KeyDown += new System.Windows.Input.KeyEventHandler(this.textBox_KeyDown); 94 | 95 | #line default 96 | #line hidden 97 | return; 98 | case 2: 99 | this.Output = ((System.Windows.Controls.TextBox)(target)); 100 | return; 101 | } 102 | this._contentLoaded = true; 103 | } 104 | } 105 | } 106 | 107 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/Console.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/Console.baml -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/Console.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\bin\Debug\ADK.Console.exe.config 2 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\bin\Debug\ADK.Console.exe 3 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\bin\Debug\ADK.Console.pdb 4 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\MainWindow.g.cs 5 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\Console.g.cs 6 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\App.g.cs 7 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\GeneratedInternalTypeHelper.g.cs 8 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\ADK.Console_MarkupCompile.cache 9 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\ADK.Console_MarkupCompile.lref 10 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\MainWindow.baml 11 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\Console.baml 12 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\ADK.Console.g.resources 13 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\ADK.Console.Properties.Resources.resources 14 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\Console.csproj.GenerateResource.Cache 15 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\ADK.Console.exe 16 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\ADK.Console.pdb 17 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\bin\Debug\ADK.Console.exe.config 18 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\bin\Debug\ADK.Console.exe 19 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\bin\Debug\ADK.Console.pdb 20 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\Console.csprojResolveAssemblyReference.cache 21 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\MainWindow.g.cs 22 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\Console.g.cs 23 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\App.g.cs 24 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\GeneratedInternalTypeHelper.g.cs 25 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\ADK.Console_MarkupCompile.cache 26 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\ADK.Console_MarkupCompile.lref 27 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\MainWindow.baml 28 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\Console.baml 29 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\ADK.Console.g.resources 30 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\ADK.Console.Properties.Resources.resources 31 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\Console.csproj.GenerateResource.Cache 32 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\ADK.Console.exe 33 | E:\Programing\C#\GitHubProject\WpfCMD\WPF-Console\Source\WpfCMD\obj\Debug\ADK.Console.pdb 34 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/Console.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/Console.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/Console.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/Console.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/Console.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\Console.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "171FCBBF8C29BC9827A1F3F0AEE5E53B" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using ADK.Console; 13 | using System; 14 | using System.Diagnostics; 15 | using System.Windows; 16 | using System.Windows.Automation; 17 | using System.Windows.Controls; 18 | using System.Windows.Controls.Primitives; 19 | using System.Windows.Data; 20 | using System.Windows.Documents; 21 | using System.Windows.Ink; 22 | using System.Windows.Input; 23 | using System.Windows.Markup; 24 | using System.Windows.Media; 25 | using System.Windows.Media.Animation; 26 | using System.Windows.Media.Effects; 27 | using System.Windows.Media.Imaging; 28 | using System.Windows.Media.Media3D; 29 | using System.Windows.Media.TextFormatting; 30 | using System.Windows.Navigation; 31 | using System.Windows.Shapes; 32 | using System.Windows.Shell; 33 | 34 | 35 | namespace ADK.Console { 36 | 37 | 38 | /// 39 | /// Console 40 | /// 41 | public partial class Console : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 10 "..\..\Console.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal System.Windows.Controls.TextBox Input; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 11 "..\..\Console.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.TextBox Output; 55 | 56 | #line default 57 | #line hidden 58 | 59 | private bool _contentLoaded; 60 | 61 | /// 62 | /// InitializeComponent 63 | /// 64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 66 | public void InitializeComponent() { 67 | if (_contentLoaded) { 68 | return; 69 | } 70 | _contentLoaded = true; 71 | System.Uri resourceLocater = new System.Uri("/ADK.Console;component/console.xaml", System.UriKind.Relative); 72 | 73 | #line 1 "..\..\Console.xaml" 74 | System.Windows.Application.LoadComponent(this, resourceLocater); 75 | 76 | #line default 77 | #line hidden 78 | } 79 | 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 82 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 83 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 86 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 87 | switch (connectionId) 88 | { 89 | case 1: 90 | this.Input = ((System.Windows.Controls.TextBox)(target)); 91 | 92 | #line 10 "..\..\Console.xaml" 93 | this.Input.KeyDown += new System.Windows.Input.KeyEventHandler(this.textBox_KeyDown); 94 | 95 | #line default 96 | #line hidden 97 | return; 98 | case 2: 99 | this.Output = ((System.Windows.Controls.TextBox)(target)); 100 | return; 101 | } 102 | this._contentLoaded = true; 103 | } 104 | } 105 | } 106 | 107 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/Console.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\Console.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "171FCBBF8C29BC9827A1F3F0AEE5E53B" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using ADK.Console; 13 | using System; 14 | using System.Diagnostics; 15 | using System.Windows; 16 | using System.Windows.Automation; 17 | using System.Windows.Controls; 18 | using System.Windows.Controls.Primitives; 19 | using System.Windows.Data; 20 | using System.Windows.Documents; 21 | using System.Windows.Ink; 22 | using System.Windows.Input; 23 | using System.Windows.Markup; 24 | using System.Windows.Media; 25 | using System.Windows.Media.Animation; 26 | using System.Windows.Media.Effects; 27 | using System.Windows.Media.Imaging; 28 | using System.Windows.Media.Media3D; 29 | using System.Windows.Media.TextFormatting; 30 | using System.Windows.Navigation; 31 | using System.Windows.Shapes; 32 | using System.Windows.Shell; 33 | 34 | 35 | namespace ADK.Console { 36 | 37 | 38 | /// 39 | /// Console 40 | /// 41 | public partial class Console : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 10 "..\..\Console.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal System.Windows.Controls.TextBox Input; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 11 "..\..\Console.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.TextBox Output; 55 | 56 | #line default 57 | #line hidden 58 | 59 | private bool _contentLoaded; 60 | 61 | /// 62 | /// InitializeComponent 63 | /// 64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 66 | public void InitializeComponent() { 67 | if (_contentLoaded) { 68 | return; 69 | } 70 | _contentLoaded = true; 71 | System.Uri resourceLocater = new System.Uri("/ADK.Console;component/console.xaml", System.UriKind.Relative); 72 | 73 | #line 1 "..\..\Console.xaml" 74 | System.Windows.Application.LoadComponent(this, resourceLocater); 75 | 76 | #line default 77 | #line hidden 78 | } 79 | 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 82 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 83 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 86 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 87 | switch (connectionId) 88 | { 89 | case 1: 90 | this.Input = ((System.Windows.Controls.TextBox)(target)); 91 | 92 | #line 10 "..\..\Console.xaml" 93 | this.Input.KeyDown += new System.Windows.Input.KeyEventHandler(this.textBox_KeyDown); 94 | 95 | #line default 96 | #line hidden 97 | return; 98 | case 2: 99 | this.Output = ((System.Windows.Controls.TextBox)(target)); 100 | return; 101 | } 102 | this._contentLoaded = true; 103 | } 104 | } 105 | } 106 | 107 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 712ce494997839bf65e73528d936f0368512c71c 2 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/GeneratedInternalTypeHelper.g.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/GeneratedInternalTypeHelper.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace XamlGeneratedNamespace { 12 | 13 | 14 | /// 15 | /// GeneratedInternalTypeHelper 16 | /// 17 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 18 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 19 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 20 | public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { 21 | 22 | /// 23 | /// CreateInstance 24 | /// 25 | protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { 26 | return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) 27 | | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); 28 | } 29 | 30 | /// 31 | /// GetPropertyValue 32 | /// 33 | protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { 34 | return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); 35 | } 36 | 37 | /// 38 | /// SetPropertyValue 39 | /// 40 | protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { 41 | propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); 42 | } 43 | 44 | /// 45 | /// CreateDelegate 46 | /// 47 | protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { 48 | return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod 49 | | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { 50 | delegateType, 51 | handler}, null))); 52 | } 53 | 54 | /// 55 | /// AddEventHandler 56 | /// 57 | protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { 58 | eventInfo.AddEventHandler(target, handler); 59 | } 60 | } 61 | } 62 | 63 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "CF038D4C1E35C9233BF85E672452DE14" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using ADK.Console; 13 | using System; 14 | using System.Diagnostics; 15 | using System.Windows; 16 | using System.Windows.Automation; 17 | using System.Windows.Controls; 18 | using System.Windows.Controls.Primitives; 19 | using System.Windows.Data; 20 | using System.Windows.Documents; 21 | using System.Windows.Ink; 22 | using System.Windows.Input; 23 | using System.Windows.Markup; 24 | using System.Windows.Media; 25 | using System.Windows.Media.Animation; 26 | using System.Windows.Media.Effects; 27 | using System.Windows.Media.Imaging; 28 | using System.Windows.Media.Media3D; 29 | using System.Windows.Media.TextFormatting; 30 | using System.Windows.Navigation; 31 | using System.Windows.Shapes; 32 | using System.Windows.Shell; 33 | 34 | 35 | namespace ADK.Console { 36 | 37 | 38 | /// 39 | /// MainWindow 40 | /// 41 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 42 | 43 | private bool _contentLoaded; 44 | 45 | /// 46 | /// InitializeComponent 47 | /// 48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 50 | public void InitializeComponent() { 51 | if (_contentLoaded) { 52 | return; 53 | } 54 | _contentLoaded = true; 55 | System.Uri resourceLocater = new System.Uri("/ADK.Console;component/mainwindow.xaml", System.UriKind.Relative); 56 | 57 | #line 1 "..\..\MainWindow.xaml" 58 | System.Windows.Application.LoadComponent(this, resourceLocater); 59 | 60 | #line default 61 | #line hidden 62 | } 63 | 64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 66 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 67 | internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { 68 | return System.Delegate.CreateDelegate(delegateType, this, handler); 69 | } 70 | 71 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 72 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 73 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 74 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 75 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 76 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 77 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 78 | this._contentLoaded = true; 79 | } 80 | } 81 | } 82 | 83 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "CF038D4C1E35C9233BF85E672452DE14" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using ADK.Console; 13 | using System; 14 | using System.Diagnostics; 15 | using System.Windows; 16 | using System.Windows.Automation; 17 | using System.Windows.Controls; 18 | using System.Windows.Controls.Primitives; 19 | using System.Windows.Data; 20 | using System.Windows.Documents; 21 | using System.Windows.Ink; 22 | using System.Windows.Input; 23 | using System.Windows.Markup; 24 | using System.Windows.Media; 25 | using System.Windows.Media.Animation; 26 | using System.Windows.Media.Effects; 27 | using System.Windows.Media.Imaging; 28 | using System.Windows.Media.Media3D; 29 | using System.Windows.Media.TextFormatting; 30 | using System.Windows.Navigation; 31 | using System.Windows.Shapes; 32 | using System.Windows.Shell; 33 | 34 | 35 | namespace ADK.Console { 36 | 37 | 38 | /// 39 | /// MainWindow 40 | /// 41 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 42 | 43 | private bool _contentLoaded; 44 | 45 | /// 46 | /// InitializeComponent 47 | /// 48 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 49 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 50 | public void InitializeComponent() { 51 | if (_contentLoaded) { 52 | return; 53 | } 54 | _contentLoaded = true; 55 | System.Uri resourceLocater = new System.Uri("/ADK.Console;component/mainwindow.xaml", System.UriKind.Relative); 56 | 57 | #line 1 "..\..\MainWindow.xaml" 58 | System.Windows.Application.LoadComponent(this, resourceLocater); 59 | 60 | #line default 61 | #line hidden 62 | } 63 | 64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 66 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 67 | internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { 68 | return System.Delegate.CreateDelegate(delegateType, this, handler); 69 | } 70 | 71 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 72 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 73 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 74 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 75 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 76 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 77 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 78 | this._contentLoaded = true; 79 | } 80 | } 81 | } 82 | 83 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WPFcmd.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\WPFcmd.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "D596F5AF1A597E02C05C3279933779E5" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // 此代码由工具生成。 5 | // 运行时版本:4.0.30319.42000 6 | // 7 | // 对此文件的更改可能会导致不正确的行为,并且如果 8 | // 重新生成代码,这些更改将会丢失。 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | using WpfCMD; 33 | 34 | 35 | namespace WpfCMD { 36 | 37 | 38 | /// 39 | /// WPFcmd 40 | /// 41 | public partial class WPFcmd : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 10 "..\..\WPFcmd.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal System.Windows.Controls.TextBox Input; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 11 "..\..\WPFcmd.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.TextBox Output; 55 | 56 | #line default 57 | #line hidden 58 | 59 | private bool _contentLoaded; 60 | 61 | /// 62 | /// InitializeComponent 63 | /// 64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 65 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 66 | public void InitializeComponent() { 67 | if (_contentLoaded) { 68 | return; 69 | } 70 | _contentLoaded = true; 71 | System.Uri resourceLocater = new System.Uri("/WpfCMD;component/wpfcmd.xaml", System.UriKind.Relative); 72 | 73 | #line 1 "..\..\WPFcmd.xaml" 74 | System.Windows.Application.LoadComponent(this, resourceLocater); 75 | 76 | #line default 77 | #line hidden 78 | } 79 | 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 82 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 83 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 84 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 86 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 87 | switch (connectionId) 88 | { 89 | case 1: 90 | this.Input = ((System.Windows.Controls.TextBox)(target)); 91 | 92 | #line 10 "..\..\WPFcmd.xaml" 93 | this.Input.KeyDown += new System.Windows.Input.KeyEventHandler(this.textBox_KeyDown); 94 | 95 | #line default 96 | #line hidden 97 | return; 98 | case 2: 99 | this.Output = ((System.Windows.Controls.TextBox)(target)); 100 | return; 101 | } 102 | this._contentLoaded = true; 103 | } 104 | } 105 | } 106 | 107 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/WpfCMD.Properties.Resources.resources -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\bin\Debug\WpfCMD.exe.config 2 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\bin\Debug\WpfCMD.exe 3 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\bin\Debug\WpfCMD.pdb 4 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\MainWindow.g.cs 5 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WPFcmd.g.cs 6 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\App.g.cs 7 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WpfCMD_MarkupCompile.cache 8 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WpfCMD_MarkupCompile.lref 9 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\MainWindow.baml 10 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WPFcmd.baml 11 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WpfCMD.g.resources 12 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WpfCMD.Properties.Resources.resources 13 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WpfCMD.csproj.GenerateResource.Cache 14 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WpfCMD.exe 15 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\WpfCMD.pdb 16 | c:\users\fangxm\documents\visual studio 2017\Projects\WpfCMD\WpfCMD\obj\Debug\GeneratedInternalTypeHelper.g.cs 17 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\bin\Debug\WpfCMD.exe.config 18 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\bin\Debug\WpfCMD.exe 19 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\bin\Debug\WpfCMD.pdb 20 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\MainWindow.g.cs 21 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\App.g.cs 22 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\GeneratedInternalTypeHelper.g.cs 23 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\WpfCMD_MarkupCompile.cache 24 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\WpfCMD_MarkupCompile.lref 25 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\MainWindow.baml 26 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\WpfCMD.g.resources 27 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\WpfCMD.Properties.Resources.resources 28 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\WpfCMD.csproj.GenerateResource.Cache 29 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\WpfCMD.exe 30 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\WpfCMD.pdb 31 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\WpfCMD.csprojResolveAssemblyReference.cache 32 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\Console.g.cs 33 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\Console.baml 34 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/WpfCMD.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/WpfCMD.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/WpfCMD.exe -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/WpfCMD.g.resources -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asixa/WPF-Console/57b3f07a602a98e7c0b1ad1ee52c82efda4d9950/Source/WpfCMD/obj/Debug/WpfCMD.pdb -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("consolecontrol.png")] 12 | 13 | 14 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | WpfCMD 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\ 8 | WpfCMD 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\App.xaml 13 | 22141950032 14 | 15 | 6-544144855 16 | 13738642453 17 | MainWindow.xaml;Console.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | WpfCMD 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\ 8 | WpfCMD 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\App.xaml 13 | 22141950032 14 | 15 | 101881976396 16 | 13738642453 17 | MainWindow.xaml;Console.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\lenovo\Desktop\WpfCMD\WpfCMD\MainWindow.xaml;; 4 | FC:\Users\lenovo\Desktop\WpfCMD\WpfCMD\Console.xaml;; 5 | 6 | -------------------------------------------------------------------------------- /Source/WpfCMD/obj/Debug/WpfCMD_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | C:\Users\lenovo\Desktop\WpfCMD\WpfCMD\obj\Debug\GeneratedInternalTypeHelper.g.cs 2 | 3 | FC:\Users\lenovo\Desktop\WpfCMD\WpfCMD\MainWindow.xaml;; 4 | FC:\Users\lenovo\Desktop\WpfCMD\WpfCMD\Console.xaml;; 5 | 6 | --------------------------------------------------------------------------------