• 大小: 0.03M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-26
  • 语言: C#
  • 标签: winform  FORM  ORM  命令  C#  

资源简介

命令行启动winform窗体,

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 取命令行
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            MessageBox.Show(“no args!“);
            Environment.Exit(0);
        }



        public Form1(string[] args)
        {
            InitializeComponent();
            for (int i = 0; i < args.Length; i++)
            {
                MessageBox.Show(args[i]);
                Environment.Exit(0);
            }
            
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1142  2020-06-04 18:25  ㏑︽\㏑︽.sln
     目录           0  2020-06-04 18:42  ㏑︽\㏑︽\
     文件         187  2020-06-04 18:25  ㏑︽\㏑︽\App.config
     目录           0  2020-06-04 18:42  ㏑︽\㏑︽\bin\
     目录           0  2020-06-04 18:42  ㏑︽\㏑︽\bin\Debug\
     文件        7680  2020-06-04 18:40  ㏑︽\㏑︽\bin\Debug\㏑︽.exe
     文件         187  2020-06-04 18:25  ㏑︽\㏑︽\bin\Debug\㏑︽.exe.config
     文件       30208  2020-06-04 18:40  ㏑︽\㏑︽\bin\Debug\㏑︽.pdb
     文件         746  2020-06-04 18:41  ㏑︽\㏑︽\Form1.cs
     文件        1405  2020-06-04 18:39  ㏑︽\㏑︽\Form1.Designer.cs
     文件        5817  2020-06-04 18:39  ㏑︽\㏑︽\Form1.resx
     目录           0  2020-06-04 18:42  ㏑︽\㏑︽\obj\
     目录           0  2020-06-04 18:42  ㏑︽\㏑︽\obj\Debug\
     文件         819  2020-06-04 18:25  ㏑︽\㏑︽\obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        7128  2020-06-04 18:25  ㏑︽\㏑︽\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2020-06-04 18:25  ㏑︽\㏑︽\obj\Debug\TempPE\
     文件         640  2020-06-04 18:33  ㏑︽\㏑︽\obj\Debug\㏑︽.csproj.FileListAbsolute.txt
     文件        1012  2020-06-04 18:39  ㏑︽\㏑︽\obj\Debug\㏑︽.csproj.GenerateResource.cache
     文件        7680  2020-06-04 18:40  ㏑︽\㏑︽\obj\Debug\㏑︽.exe
     文件         180  2020-06-04 18:39  ㏑︽\㏑︽\obj\Debug\㏑︽.Form1.resources
     文件       30208  2020-06-04 18:40  ㏑︽\㏑︽\obj\Debug\㏑︽.pdb
     文件         180  2020-06-04 18:33  ㏑︽\㏑︽\obj\Debug\㏑︽.Properties.Resources.resources
     文件         660  2020-06-04 18:39  ㏑︽\㏑︽\Program.cs
     目录           0  2020-06-04 18:42  ㏑︽\㏑︽\Properties\
     文件        1316  2020-06-04 18:25  ㏑︽\㏑︽\Properties\AssemblyInfo.cs
     文件        2837  2020-06-04 18:25  ㏑︽\㏑︽\Properties\Resources.Designer.cs
     文件        5612  2020-06-04 18:25  ㏑︽\㏑︽\Properties\Resources.resx
     文件        1099  2020-06-04 18:25  ㏑︽\㏑︽\Properties\Settings.Designer.cs
     文件         249  2020-06-04 18:25  ㏑︽\㏑︽\Properties\Settings.settings
     文件        3539  2020-06-04 18:28  ㏑︽\㏑︽\㏑︽.csproj

评论

共有 条评论