• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Forms.ContextMenu类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Windows.Forms.ContextMenu的典型用法代码示例。如果您正苦于以下问题:C# ContextMenu类的具体用法?C# ContextMenu怎么用?C# ContextMenu使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ContextMenu类属于System.Windows.Forms命名空间,在下文中一共展示了ContextMenu类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: FaceImageControl

        public FaceImageControl( FaceImage Face, FaceImageListControl FaceControlParent )
        {
            this.Face = Face;
            this.FaceControlParent = FaceControlParent;
            InitializeComponent();

            SetBounds( 0, 0, Face.Face.Width, Face.Face.Height );

            List<MenuItem> menuitems = new List<MenuItem>();

            MenuItem mi;
            mi = new MenuItem( "Edit URL" );
            mi.Click += new EventHandler( mi_EditURL_Click );
            menuitems.Add( mi );

            mi = new MenuItem( "Edit Name" );
            mi.Click += new EventHandler( mi_EditName_Click );
            menuitems.Add( mi );

            mi = new MenuItem( "Delete" );
            mi.Click += new EventHandler( mi_Delete_Click );
            menuitems.Add( mi );

            RightClickMenuItems = menuitems.ToArray();
            RightClickMenu = new System.Windows.Forms.ContextMenu( RightClickMenuItems );

            ImageAttrs = new System.Drawing.Imaging.ImageAttributes();
            ColorMatrix = new System.Drawing.Imaging.ColorMatrix();
        }
开发者ID:AdmiralCurtiss,项目名称:FaceCopy,代码行数:29,代码来源:FaceImageControl.cs


示例2: ServerLogForm

        public ServerLogForm(ShadowsocksController controller)
        {
            this.controller = controller;
            this.Icon = Icon.FromHandle(Resources.ssw128.GetHicon());
            InitializeComponent();
            this.Width = 760;

            Configuration config = controller.GetCurrentConfiguration();
            if (config.configs.Count < 8)
            {
                this.Height = 300;
            }
            else if (config.configs.Count < 20)
            {
                this.Height = 300 + (config.configs.Count - 8) * 16;
            }
            else
            {
                this.Height = 500;
            }
            UpdateTexts();
            UpdateLog();

            this.contextMenu1 = new ContextMenu(new MenuItem[] {
                this.clearItem = CreateMenuItem("&Clear", new EventHandler(this.ClearItem_Click)),
            });
            ServerDataGrid.ContextMenu = contextMenu1;
            controller.ConfigChanged += controller_ConfigChanged;
        }
开发者ID:norkts,项目名称:shadowsocks-csharp,代码行数:29,代码来源:ServerLogForm.cs


示例3: MainWindow

        public MainWindow()
        {
            InitializeComponent();
            this.notifyIcon = new NotifyIcon();
            contextMenu = new ContextMenu();

            MenuItem refreshItem = new MenuItem();
            refreshItem.Click += new System.EventHandler(this.refreshQuestionNo);
            refreshItem.Text = "Refresh";
            contextMenu.MenuItems.Add(refreshItem);

            MenuItem openItem = new MenuItem();
            openItem.Click += new System.EventHandler(this.showApp);
            openItem.Text = "Show";
            contextMenu.MenuItems.Add(openItem);

            MenuItem exitItem = new MenuItem();
            exitItem.Click += new System.EventHandler(this.exitApp);
            exitItem.Text = "Exit";
            contextMenu.MenuItems.Add(exitItem);

            dispatcherTimer = new DispatcherTimer();
            dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
            dispatcherTimer.Interval = new TimeSpan(0, 0, 1);
        }
开发者ID:theonasch,项目名称:Wonder,代码行数:25,代码来源:MainWindow.xaml.cs


示例4: Notificator

        public Notificator(IEventLogger eventLogger, ISettingsManager settingsManager)
        {
            _eventLogger = eventLogger;
            _settingsManager = settingsManager;

            var menuItem = new MenuItem(Strings.Exit);
            menuItem.Click += menuItem_Click;
            var contextMenu = new ContextMenu(new[] {menuItem});
            _notifyIcon = new NotifyIcon
            {
                Icon = new Icon("TryIcon.ico"),
                Visible = true,
                BalloonTipTitle = Strings.Caution,
                Text = Strings.Initializing,
                ContextMenu = contextMenu
            };

            var oneRunTimer = new Timer(3000)
            {
                AutoReset = false,
                Enabled = true
            };
            oneRunTimer.Elapsed += _timer_Elapsed; // runs only once after aplication start

            var timer = new Timer(60000)
            {
                AutoReset = true,
                Enabled = true
            };
            timer.Elapsed += _timer_Elapsed;
        }
开发者ID:sarochm,项目名称:ltc,代码行数:31,代码来源:Notificator.cs


示例5: PrinterListContextMenu

        private ContextMenu PrinterListContextMenu()
        {
            var contextMenu = new ContextMenu();

            var properties = new MenuItem
            {
                Index = 0,
                Text = "Properties"
            };
            properties.Click += Properties_Click;

            var setAsDefault = new MenuItem
            {
                Index = 1,
                Text = "Set As Default"
            };
            setAsDefault.Click += SetAsDefault_Click;

            var viewDetails = new MenuItem
            {
                Index = 1,
                Text = "View Details"
            };
            viewDetails.Click += ViewDetails_Click;

            contextMenu.MenuItems.AddRange(new MenuItem[] { setAsDefault , viewDetails,properties });

            return contextMenu;
        }
开发者ID:anisanwesley,项目名称:Aniink,代码行数:29,代码来源:Main.cs


示例6: SysTrayApp

        public SysTrayApp()
        {
            // Create a simple tray menu
            trayMenu = new ContextMenu();

            // Create a tray icon
            trayIcon = new NotifyIcon();
            trayIcon.Text = "AudioSwitcher";
            trayIcon.Icon = new Icon(Resources.speaker, 40, 40);

            // Add menu to tray icon and show it
            trayIcon.ContextMenu = trayMenu;
            trayIcon.Visible = true;

            // Count sound-devices
            foreach (var tuple in GetDevices())
            {
                deviceCount += 1;
            }

            // Populate device list when menu is opened
            trayIcon.ContextMenu.Popup += PopulateDeviceList;

            // Register MEH on trayicon leftclick
            trayIcon.MouseUp += new MouseEventHandler(TrayIcon_LeftClick);
        }
开发者ID:tgrave,项目名称:AudioSwitcher,代码行数:26,代码来源:Program.cs


示例7: CreatePrivateMessageControl

 public PrivateMessageControl CreatePrivateMessageControl(string userName)
 {
     var pmControl = new PrivateMessageControl(userName) { Dock = DockStyle.Fill };
     var isFriend = Program.FriendManager.Friends.Contains(userName);
     User user;
     var isOffline = !Program.TasClient.ExistingUsers.TryGetValue(userName, out user);
     var icon = isOffline ? ZklResources.grayuser : TextImage.GetUserImage(userName);
     var contextMenu = new ContextMenu();
     if (!isFriend)
     {
         var closeButton = new MenuItem();
         closeButton.Click += (s, e) => toolTabs.RemovePrivateTab(userName);
         contextMenu.MenuItems.Add(closeButton);
     }
     toolTabs.AddTab(userName, userName, pmControl, icon, ToolTipHandler.GetUserToolTipString(userName), 0);
     pmControl.ChatLine +=
         (s, e) =>
         {
             if (Program.TasClient.IsLoggedIn)
             {
                 if (Program.TasClient.ExistingUsers.ContainsKey(userName)) Program.TasClient.Say(SayPlace.User, userName, e.Data, false);
                 else Program.TasClient.Say(SayPlace.User, GlobalConst.NightwatchName, e.Data, false, string.Format("!pm {0} ", userName)); // send using PM
             }
         };
     return pmControl;
 }
开发者ID:ParzivalX,项目名称:Zero-K-Infrastructure,代码行数:26,代码来源:ChatTab.cs


示例8: LogViewer

 public LogViewer(string spacefilter, AssemblaTicketWindow.LoginSucceedDel loginsuccess,string User, string Pw)
 {
     namefilter = spacefilter;
     loginsucceed = loginsuccess;
     user = User;
     pw = Pw;
     if (loginsucceed == null)
         loginsucceed = new AssemblaTicketWindow.LoginSucceedDel(succeed);
     InitializeComponent();
     if (namefilter!=string.Empty)
     {
         Text = PROGRAM + " " + namefilter;
         Invalidate();
     }
     ContextMenu = new ContextMenu();
     ContextMenu.MenuItems.Add("View", new EventHandler(view));
     ContextMenu.MenuItems.Add("Ticket", new EventHandler(aticket));
     ContextMenu.MenuItems.Add("Delete", new EventHandler(del));
     DoubleClick += new EventHandler(LogViewerMain_DoubleClick);
     _logs.DoubleClick += new EventHandler(_logs_DoubleClick);
     _logs.SelectionMode = SelectionMode.MultiExtended;
     _logs.Sorted = true;
     init();
     fsw =  new System.IO.FileSystemWatcher(PATH,WILDEXT);
     fsw.IncludeSubdirectories = false;
     fsw.Changed += new System.IO.FileSystemEventHandler(fsw_Changed);
     fsw.Created += new System.IO.FileSystemEventHandler(fsw_Created);
 }
开发者ID:antonywu,项目名称:tradelink,代码行数:28,代码来源:LogViewer.cs


示例9: Options

        public Options()
        {
            InitializeComponent();

              _slots = new Slot[] { new Slot(1, lbl360_1, btnSlot1Settings),
              new Slot(2, lbl360_2, btnSlot2Settings), new Slot(3, lbl360_3, btnSlot3Settings),
              new Slot(4, lbl360_4, btnSlot4Settings) };

              _menu = new ContextMenu();
              _menu.MenuItems.Add("Options...", OnOptionsClick);
              _menu.MenuItems.Add("Exit", OnExit);

              _icon = new NotifyIcon();
              _icon.Text = Assembly.GetExecutingAssembly().GetName().Name;
              _icon.Icon = Icon.ExtractAssociatedIcon(Assembly.GetExecutingAssembly().Location);
              _icon.ContextMenu = _menu;
              _icon.Visible = true;
              _icon.DoubleClick += _icon_DoubleClick;

              lbl360_1.DoubleClick += Xbox360Label_DoubleClick;
              lbl360_2.DoubleClick += Xbox360Label_DoubleClick;
              lbl360_3.DoubleClick += Xbox360Label_DoubleClick;
              lbl360_4.DoubleClick += Xbox360Label_DoubleClick;

              _StartInterface();
        }
开发者ID:aromis,项目名称:uDrawTablet,代码行数:26,代码来源:Options.cs


示例10: btnLogin_Click

        private void btnLogin_Click(object sender, EventArgs e)
        {
            string response = network.HttpPost("http://www.status3gaming.com/gmtool/", "user=" + txtUsername.Text + "&pass=" + txtPassword.Text);

            if(response == "0"){
                MessageBox.Show("Failed Login", "Response", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
            }
            else if (Regex.IsMatch(response, "[0-9A-Fa-f]{40}"))
            {
                Program.SetHash(response);
                MessageBox.Show("Successfully Logged In", "Response", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                this.Visible = false;

                //Create Context Menu for system tray.
                sysTrayMenu = new ContextMenu();
                sysTrayMenu.MenuItems.Add("Check for new tickets...", OnRefresh);
                sysTrayMenu.MenuItems.Add("Quit", OnExit);

                sysTrayIcon = new NotifyIcon();
                sysTrayIcon.Text = "GM Tool";
                sysTrayIcon.Icon = Properties.Resources.Tray;

                // Add menu to tray icon and show it.
                sysTrayIcon.ContextMenu = sysTrayMenu;
                sysTrayIcon.Visible = true;
                sysTrayIcon.BalloonTipClicked += new EventHandler(sysTrayIcon_BaloonTipClicked);
                sysTrayIcon.ShowBalloonTip(5000, "GM Tool", "Tray Monitor Active", ToolTipIcon.None);

                timer.Start();
            }
        }
开发者ID:xxValiumxx,项目名称:GMTool,代码行数:31,代码来源:Form1.cs


示例11: ConnectStatus

            public ConnectStatus(MainWindow window)
            {
                this.window = window;
                icon = new NotifyIcon();
                icon.Visible = true;

                icon.DoubleClick += (sender, e) => {
                    window.WindowState = System.Windows.WindowState.Normal;
                    window.Activate();
                };

                var menu = new ContextMenu();

                menu.MenuItems.Add(resources["AddRules"] as string, (sender, e) => {
                    Rules.OpenEditor(false);
                });

                menu.MenuItems.Add(resources["Exit"] as string, (sender, e) => {
                    System.Windows.Application.Current.Shutdown();
                });

                icon.ContextMenu = menu;

                SetStatus(Status.Stopped, resources["NotConnected"] as string);
                System.Windows.Application.Current.Exit += (sender, e) => {
                    icon.Dispose();
                };
            }
开发者ID:liuwentao,项目名称:x-wall,代码行数:28,代码来源:ConnectStatus.cs


示例12: Main

        public Main()
        {
            InitializeComponent();
            string headerText = string.Format("InfiniPad v{0}", Globals.getVersion());
            this.Icon = Properties.Resources.icon;
            this.Text = headerText;

            hk = new Hotkeys();
            
            nfi = new NotifyIcon();
            nfi.Icon = Properties.Resources.icon;
            nfi.Visible = true;
            nfi.Text = headerText;
            nfi.MouseClick += nfiClicked;

            ContextMenu ctm = new ContextMenu();
            ctm.MenuItems.Add("Exit", new EventHandler(nfiExit));

            nfi.ContextMenu = ctm;

            hk.ReapplyHotkeys();
            Globals.CreateMoveDir();

            #region movefile
#if !DEBUG
                    Globals.moveFile(Globals.MoveToDir + "InfiniPad.exe");
#endif
            #endregion
            


        }
开发者ID:Enoz,项目名称:InfiniPad,代码行数:32,代码来源:Main.cs


示例13: InitContext

 void InitContext()
 {
     ContextMenu = new ContextMenu();
     ContextMenu.MenuItems.Add("Play", new EventHandler(rightplay));
     ContextMenu.MenuItems.Add("Reset", new EventHandler(rightreset));
     ContextMenu.MenuItems.Add("Debugs", new EventHandler(rightdebugs));
 }
开发者ID:antonywu,项目名称:tradelink,代码行数:7,代码来源:KadinaMain.cs


示例14: SystemTray

        internal SystemTray(KyruApplication app)
        {
            this.app = app;

            trayMenu = new ContextMenu();
            trayMenu.MenuItems.Add("Log in", OnLogin);
            trayMenu.MenuItems.Add("Connect", OnRegisterNode);
            trayMenu.MenuItems.Add("-");
            trayMenu.MenuItems.Add("System status", OnSystemStatus);
            trayMenu.MenuItems.Add("-");
            trayMenu.MenuItems.Add("Exit", OnExit);

            trayIcon = new NotifyIcon();

            nodesIcon = new List<Icon>();

            for (int i = 0; i < 4; i++){
                nodesIcon.Add(new Icon("Icons/kyru"+ i.ToString() + ".ico"));
            }
            //TimerElapsed();
            trayIcon.MouseDoubleClick += OnLogin;

            trayIcon.ContextMenu = trayMenu;
            trayIcon.Visible = true;

            TimerElapsed();
            KyruTimer.Register(this, 2);
        }
开发者ID:zr40,项目名称:kyru-dotnet,代码行数:28,代码来源:SystemTray.cs


示例15: MainForm

        public MainForm()
        {
            InitializeComponent();

            // Create a simple tray menu with only one item.
            trayMenu = new ContextMenu();
            trayMenu.MenuItems.Add("Exit", OnExit);

            // Create a tray icon. In this example we use a
            // standard system icon for simplicity, but you
            // can of course use your own custom icon too.
            trayIcon = new NotifyIcon();
            trayIcon.Text = "WurmTimer";
            trayIcon.Icon = Properties.Resources.wurm_icon;

            // Add menu to tray icon and show it.
            trayIcon.ContextMenu = trayMenu;
            trayIcon.Visible = true;

            trayIcon.DoubleClick += new EventHandler(trayIcon_DoubleClick);
            trayIcon.BalloonTipClicked += new EventHandler(trayIcon_BalloonTipClicked);

            this.Icon = Properties.Resources.wurm_icon;

            players = new List<Player>();
            if (!LoadConfig())
                players.Add(new Player());

            checkLog.Checked = true;
        }
开发者ID:ago1024,项目名称:WurmTools,代码行数:30,代码来源:MainForm.cs


示例16: WebBowserEmulator

        public WebBowserEmulator()
        {
            InitializeComponent();
            for(int i = 0 ;i< No_of_Invokes;i++)
            {
                web[i] = new WebBrowser[No_of_Instance]; 
            }
            
            // Create a simple tray menu with only two item.
            trayMenu = new ContextMenu();
            trayMenu.MenuItems.Add("Emulate", OnEmulate);
            trayMenu.MenuItems.Add("Exit", OnExit);
            
            // Create a tray icon. In this example we use a
            // standard system icon for simplicity, but you
            // can of course use your own custom icon too.
            trayIcon = new NotifyIcon();
            trayIcon.Text = "Web Browser Emulator";
            trayIcon.Icon = new Icon(SystemIcons.Application, 40, 40);

            // Add menu to tray icon and show it.
            trayIcon.ContextMenu = trayMenu;
            trayIcon.Visible = true;
            
            //InvokeprogressBar.BackColor = Color.Transparent;
            
        }
开发者ID:jappppi,项目名称:WPF-Apllications,代码行数:27,代码来源:WebBowserEmulator.cs


示例17: ServerMBMain

        public ServerMBMain()
        {
            InitializeComponent();
            _msg.SendToBack();
            m_ComMgr = new MBTCOMLib.MbtComMgrClass();
            m_ComMgr.SilentMode = true;
            m_ComMgr.EnableSplash(false);
            m_OrderClient = m_ComMgr.OrderClient;
            m_Quotes = m_ComMgr.Quotes;
            ContextMenu = new ContextMenu();
            ContextMenu.MenuItems.Add("Messages", new EventHandler(rightmessage));

            // tradelink bindings
            tl.newProviderName = Providers.MBTrading;
            tl.newFeatureRequest += new MessageArrayDelegate(tl_newFeatureRequest);
            tl.newSendOrderRequest += new OrderDelegate(tl_newSendOrderRequest);
            tl.newRegisterStocks += new DebugDelegate(tl_newRegisterStocks);
            tl.newOrderCancelRequest += new UIntDelegate(tl_newOrderCancelRequest);
            tl.newAcctRequest += new StringDelegate(tl_newAcctRequest);
            tl.newPosList += new PositionArrayDelegate(tl_newPosList);


            // mb bindings
            m_ComMgr.OnLogonSucceed += new IMbtComMgrEvents_OnLogonSucceedEventHandler(m_ComMgr_OnLogonSucceed);
            m_ComMgr.OnLogonDeny += new IMbtComMgrEvents_OnLogonDenyEventHandler(m_ComMgr_OnLogonDeny);
            m_OrderClient.OnSubmit += new _IMbtOrderClientEvents_OnSubmitEventHandler(m_OrderClient_OnSubmit);
            m_OrderClient.OnRemove += new _IMbtOrderClientEvents_OnRemoveEventHandler(m_OrderClient_OnRemove);
            m_OrderClient.OnPositionUpdated += new _IMbtOrderClientEvents_OnPositionUpdatedEventHandler(m_OrderClient_OnPositionUpdated);


            FormClosing += new FormClosingEventHandler(ServerMBMain_FormClosing);

        }
开发者ID:antonywu,项目名称:tradelink,代码行数:33,代码来源:ServerMBMain.cs


示例18: MainForm

		public MainForm ()
		{

			Click += new EventHandler (OnClick);

			MenuItem item1 = new MenuItem ("File");
			MenuItem item2 = new MenuItem ("Print the file");
			MenuItem item3 = new MenuItem ("Print Preview");
			MenuItem item4 = new MenuItem ("-");
			MenuItem item5 = new MenuItem ("Save");
			MenuItem item6 = new MenuItem ("Exit");

			MenuItem item7 = new MenuItem ("Edit");
			item7.BarBreak = true;
			MenuItem item8 = new MenuItem ("Undo");
			MenuItem item9 = new MenuItem ("Cut");
			MenuItem item10 = new MenuItem ("Paste");


			MenuItem item12 = new MenuItem ("Format Table");
			item12.Break = true;
			MenuItem item13 = new MenuItem ("Format Page");

			MenuItem item14 = new MenuItem ();
			item14.Break = true;
			MenuItem item15 = new MenuItem ("Help");

			MenuItem[] items = new MenuItem[] {item1, item2, item3, item4, item5,
				item6, item7, item8, item9, item10, item12,
				item13, item14, item15};

			Text = "Basic ContextMenu Sample";
			context_menu = new 	ContextMenu (items);

		}
开发者ID:Clancey,项目名称:MonoMac.Windows.Form,代码行数:35,代码来源:Main.cs


示例19: NotifyIconHandler

        public NotifyIconHandler(System.Drawing.Icon standardIcon, System.Drawing.Icon workingIcon)
        {
            StandardIcon = standardIcon;
            WorkingIcon = workingIcon;

            NotifyIcon = new System.Windows.Forms.NotifyIcon { BalloonTipText = "GitList", Icon = standardIcon, Visible = true};

            var menu = new System.Windows.Forms.ContextMenu();
            menu.MenuItems.Add("Show", delegate(object sender, EventArgs e)
            {
                NotifyDoubleClick(sender, null);
            });
            menu.MenuItems.Add("Exit", delegate(object sender, EventArgs e)
            {
                Application.Current.Shutdown();
            });

            NotifyIcon.ContextMenu = menu;

            NotifyIcon.MouseDoubleClick += (sender, e) => NotifyDoubleClick(sender, e);
            NotifyIcon.BalloonTipClicked += (sender, e) => BalloonTipClick(sender, e);

            ShowAlert("GitList is running...", TimeSpan.FromSeconds(30));

            AutoShowInSystemTray();
        }
开发者ID:BradleySewell,项目名称:GitList,代码行数:26,代码来源:NotifyIconHandler.cs


示例20: Main

        public Main()
        {
            InitializeComponent();

            //initialize tray icon
            notifyIcon = new NotifyIcon();
            Stream iconStream = System.Windows.Application.GetResourceStream(new Uri("pack://application:,,,/clientWPF;component/sync.ico")).Stream;
            notifyIcon.Icon = new System.Drawing.Icon(iconStream);
            notifyIconMenu = new System.Windows.Forms.ContextMenu();
            System.Windows.Forms.MenuItem mnuItemSyncNow = new System.Windows.Forms.MenuItem();
            System.Windows.Forms.MenuItem mnuItemShow = new System.Windows.Forms.MenuItem();
            mnuItemShow.Text = "Show";
            mnuItemShow.Click += new System.EventHandler(notifyIcon_Click);
            notifyIconMenu.MenuItems.Add(mnuItemShow);
            mnuItemSyncNow.Text = "SyncNow";
            mnuItemSyncNow.Click += new System.EventHandler(syncMenuItem);
            notifyIconMenu.MenuItems.Add(mnuItemSyncNow);
            notifyIcon.Text = "SyncClient";
            notifyIcon.ContextMenu = notifyIconMenu;
            notifyIcon.BalloonTipTitle = "App minimized to tray";
            notifyIcon.BalloonTipText = "Sync sill running.";

            // Settings
            connectionSettings = new ConnectionSettings();
            tAddress.Text = connectionSettings.readSetting("connection", "address");
            tPort.Text = connectionSettings.readSetting("connection", "port");
            tDirectory.Text = connectionSettings.readSetting("account", "directory");
            tTimeout.Text = connectionSettings.readSetting("connection", "syncTime");
        }
开发者ID:AlbertoArdu,项目名称:ProgettoGestoreFile,代码行数:29,代码来源:Main.xaml.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Forms.ContextMenuStrip类代码示例发布时间:2022-05-26
下一篇:
C# Forms.ContainerControl类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap