当前位置: 首页>>代码示例>>C#>>正文


C# ProcessStartInfo.BindFromCommandLine方法代码示例

本文整理汇总了C#中System.Diagnostics.ProcessStartInfo.BindFromCommandLine方法的典型用法代码示例。如果您正苦于以下问题:C# ProcessStartInfo.BindFromCommandLine方法的具体用法?C# ProcessStartInfo.BindFromCommandLine怎么用?C# ProcessStartInfo.BindFromCommandLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Diagnostics.ProcessStartInfo的用法示例。


在下文中一共展示了ProcessStartInfo.BindFromCommandLine方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ProcessStartInfo

        public void コマンドラインがFileNameとArgumentsプロパティに反映される(
            string commandLine, string expectedFileName, string expectedArguments)
        {
            var actual = new ProcessStartInfo();

            actual.BindFromCommandLine(commandLine);

            Assert.AreEqual(actual.FileName, expectedFileName);
            Assert.AreEqual(actual.Arguments, expectedArguments);
        }
开发者ID:setanamimoi,项目名称:csFiler,代码行数:10,代码来源:BindFromCommandLine.cs

示例2: FilerWindow

        /// <summary>
        /// FilerWindow の新しいインスタンスを初期化します。
        /// </summary>
        public FilerWindow()
        {
            InitializeComponent();

            if (System.IO.File.Exists(historyFilePath) == false)
            {
                if (new System.IO.FileInfo(historyFilePath).Directory.Exists == false)
                {
                    new System.IO.FileInfo(historyFilePath).Directory.Create();
                }
                using (System.IO.File.Create(historyFilePath)) { }
            }

            var processTextBoxShortcutKey = new ShortcutKeyInvoker(this.processTextBox);
            processTextBoxShortcutKey.Add(() =>
            {
                if (this.intellisenceListBox.Items.Count == 0)
                {
                    this.intellisence.IsOpen = false;
                }
                else
                {
                    this.intellisence.IsOpen = true;
                }
                return true;
            }, Key.Space, ModifierKeys.Control);

            processTextBoxShortcutKey.Add(() =>
            {
                MessageBox.Show("action");
                return true;
            }, Key.Space, ModifierKeys.Control | ModifierKeys.Alt);
            processTextBoxShortcutKey.Add(() =>
                {
                    if (this.intellisence.IsOpen == false)
                    {
                        return false;
                    }

                    this.intellisenceListBox.SelectedIndex = 0;
                    this.intellisenceListBox.FocusSelectedItem();
                    return true;
                }, Key.Down, ModifierKeys.None);
            processTextBoxShortcutKey.Add(() =>
                {
                    var process = new ProcessStartInfo();
                    process.BindFromCommandLine(this.processTextBox.Text);

                    using (Process.Start(process)) { }

                    if (this.intellisenceSource.Select(x => x.ToUpper()).Contains(this.processTextBox.Text) == false)
                    {
                        using (var writer = new System.IO.StreamWriter(historyFilePath, true, System.Text.Encoding.GetEncoding(932)))
                        {
                            writer.WriteLine(this.processTextBox.Text);
                        }
                        this.intellisenceSource.Add(this.processTextBox.Text);
                    }
                    this.Close();
                    return true;
                }, Key.Enter, ModifierKeys.None);
            processTextBoxShortcutKey.Add(() =>
                {
                    if (this.intellisence.IsOpen == false)
                    {
                        return false;
                    }

                    if (this.intellisenceListBox.Items.Count != 1)
                    {
                        return false;
                    }

                    this.processTextBox.Text = Convert.ToString(this.intellisenceListBox.Items[0]);
                    this.processTextBox.Select(this.processTextBox.Text.Length, 0);
                    return true;
                }, Key.Tab, ModifierKeys.None);
            var intellisenceListBoxShortcutKey = new ShortcutKeyInvoker(this.intellisenceListBox);
            intellisenceListBoxShortcutKey.Add(() =>
                {
                    if (this.intellisenceListBox.SelectedIndex != 0)
                    {
                        return false;
                    }

                    this.intellisenceListBox.SelectedIndex = -1;

                    this.processTextBox.Focus();
                    return true;
                }
            ,Key.Up, ModifierKeys.None);
            var intellisenceDecide = new Func<bool>(() =>
            {
                this.processTextBox.Text = this.intellisenceListBox.SelectedItem as string;
                this.processTextBox.Select(this.processTextBox.Text.Length, 0);

                this.processTextBox.Focus();
//.........这里部分代码省略.........
开发者ID:setanamimoi,项目名称:csFiler,代码行数:101,代码来源:FilerWindow.xaml.cs


注:本文中的System.Diagnostics.ProcessStartInfo.BindFromCommandLine方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。