命令行参数这样是一种技术,传递一组参数到你希望开始的应用,以某种方式影响它。
如使用Windows自带的记事本,在开始菜单选择运行或者按一下Win+R键,输入:notepad.exe c:\Windows\win.ini。这就在记事本中打开了win.ini文件。记事本简单的寻找一条或多条参数,然后使用它们。
现在编写一个应用程序打开一个存在的txt文档并在应用的窗口中显示。文章来源:https://www.toymoban.com/news/detail-742641.html
App.xaml中添加Startup事件文章来源地址https://www.toymoban.com/news/detail-742641.html
<Application x:Class="CommandDemo.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:CommandDemo"
StartupUri="MainWindow.xaml" S
到了这里,关于C#WPF命令行参数实例的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!