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

C# Forms.RadioButton类代码示例

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

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



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

示例1: InitializeComponent

 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RadioCheckbox));
     this.checkBox = new System.Windows.Forms.CheckBox();
     this.radioButton = new System.Windows.Forms.RadioButton();
     this.SuspendLayout();
     //
     // checkBox
     //
     resources.ApplyResources(this.checkBox, "checkBox");
     this.checkBox.Name = "checkBox";
     this.checkBox.UseVisualStyleBackColor = true;
     //
     // radioButton
     //
     resources.ApplyResources(this.radioButton, "radioButton");
     this.radioButton.Name = "radioButton";
     this.radioButton.TabStop = true;
     this.radioButton.UseVisualStyleBackColor = true;
     this.radioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
     //
     // RadioCheckbox
     //
     this.Controls.Add(this.radioButton);
     this.Controls.Add(this.checkBox);
     this.Name = "RadioCheckbox";
     resources.ApplyResources(this, "$this");
     this.ResumeLayout(false);
 }
开发者ID:Stoner19,项目名称:Memory-Lifter,代码行数:33,代码来源:RadioCheckbox.designer.cs


示例2: InitializeComponent

 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.colourFrameButton = new System.Windows.Forms.RadioButton();
     this.depthFrameButton = new System.Windows.Forms.RadioButton();
     this.frameImage = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.frameImage)).BeginInit();
     this.SuspendLayout();
     //
     // colourFrameButton
     //
     this.colourFrameButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.colourFrameButton.AutoSize = true;
     this.colourFrameButton.BackColor = System.Drawing.Color.Transparent;
     this.colourFrameButton.Location = new System.Drawing.Point(433, 419);
     this.colourFrameButton.Name = "colourFrameButton";
     this.colourFrameButton.Size = new System.Drawing.Size(55, 17);
     this.colourFrameButton.TabIndex = 5;
     this.colourFrameButton.Text = "Colour";
     this.colourFrameButton.UseVisualStyleBackColor = false;
     this.colourFrameButton.CheckedChanged += new System.EventHandler(this.colourFrameButton_CheckedChanged);
     //
     // depthFrameButton
     //
     this.depthFrameButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.depthFrameButton.AutoSize = true;
     this.depthFrameButton.BackColor = System.Drawing.Color.Transparent;
     this.depthFrameButton.Checked = true;
     this.depthFrameButton.Location = new System.Drawing.Point(373, 419);
     this.depthFrameButton.Name = "depthFrameButton";
     this.depthFrameButton.Size = new System.Drawing.Size(54, 17);
     this.depthFrameButton.TabIndex = 4;
     this.depthFrameButton.TabStop = true;
     this.depthFrameButton.Text = "Depth";
     this.depthFrameButton.UseVisualStyleBackColor = false;
     this.depthFrameButton.CheckedChanged += new System.EventHandler(this.depthFrameButton_CheckedChanged);
     //
     // frameImage
     //
     this.frameImage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.frameImage.Location = new System.Drawing.Point(0, 0);
     this.frameImage.Name = "frameImage";
     this.frameImage.Size = new System.Drawing.Size(492, 439);
     this.frameImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.frameImage.TabIndex = 3;
     this.frameImage.TabStop = false;
     //
     // KinectCamera
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.colourFrameButton);
     this.Controls.Add(this.depthFrameButton);
     this.Controls.Add(this.frameImage);
     this.Name = "KinectCamera";
     this.Size = new System.Drawing.Size(492, 439);
     ((System.ComponentModel.ISupportInitialize)(this.frameImage)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:JohnMcCaffery,项目名称:ChimeraClean,代码行数:63,代码来源:KinectCamera.designer.cs


示例3: RadioButton

 public RadioButton()
 {
     mRadioButton = null;
     mPoint = new Point2I();
     mSize = new Size2I();
     mContain = null;
     mText = null;
 }
开发者ID:zyouhua,项目名称:weilai,代码行数:8,代码来源:RadioButton.cs


示例4: RadioButtonEx

 public RadioButtonEx()
 {
     mCheckCommand = null;
     mCheckCmd = null;
     mRadioButton = null;
     mPoint = new Point2I();
     mSize = new Size2I();
     mContain = null;
     mText = null;
 }
开发者ID:zyouhua,项目名称:weilai,代码行数:10,代码来源:RadioButtonEx.cs


示例5: _initControl

 public override void _initControl()
 {
     if (null == mRadioButton || mRadioButton.IsDisposed)
     {
         mRadioButton = new System.Windows.Forms.RadioButton();
         mRadioButton.Location = new Point(mPoint._getX(), mPoint._getY());
         mRadioButton.Size = new Size(mSize._getWidth(), mSize._getHeight());
         mRadioButton.Text = mText;
         mRadioButton.AutoCheck = false;
         mRadioButton.Click += this._radioButtonClick;
         mRadioButton.CheckedChanged += this._radioButtonCheckedChanged;
     }
 }
开发者ID:zyouhua,项目名称:weilai,代码行数:13,代码来源:RadioButtonEx.cs


示例6: InitializeComponent

 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WizardIntroduction));
     this.labelTitle = new System.Windows.Forms.Label();
     this.radioButtonCopyFile = new System.Windows.Forms.RadioButton();
     this.radioButtonTypeText = new System.Windows.Forms.RadioButton();
     this.labelRadioButtonHeader = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // labelTitle
     //
     resources.ApplyResources(this.labelTitle, "labelTitle");
     this.labelTitle.Name = "labelTitle";
     //
     // radioButtonCopyFile
     //
     resources.ApplyResources(this.radioButtonCopyFile, "radioButtonCopyFile");
     this.radioButtonCopyFile.Checked = true;
     this.radioButtonCopyFile.Name = "radioButtonCopyFile";
     this.radioButtonCopyFile.TabStop = true;
     this.radioButtonCopyFile.UseVisualStyleBackColor = true;
     this.radioButtonCopyFile.MouseClick += new System.Windows.Forms.MouseEventHandler(this.radioButtonTypeText_MouseClick);
     //
     // radioButtonTypeText
     //
     resources.ApplyResources(this.radioButtonTypeText, "radioButtonTypeText");
     this.radioButtonTypeText.Name = "radioButtonTypeText";
     this.radioButtonTypeText.TabStop = true;
     this.radioButtonTypeText.UseVisualStyleBackColor = true;
     this.radioButtonTypeText.MouseClick += new System.Windows.Forms.MouseEventHandler(this.radioButtonTypeText_MouseClick);
     //
     // labelRadioButtonHeader
     //
     resources.ApplyResources(this.labelRadioButtonHeader, "labelRadioButtonHeader");
     this.labelRadioButtonHeader.Name = "labelRadioButtonHeader";
     //
     // WizardIntroduction
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelRadioButtonHeader);
     this.Controls.Add(this.radioButtonTypeText);
     this.Controls.Add(this.radioButtonCopyFile);
     this.Controls.Add(this.labelTitle);
     this.Name = "WizardIntroduction";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:plutext,项目名称:OpenDoPE-Mapping-WordAddIn,代码行数:52,代码来源:WizardIntroduction.designer.cs


示例7: _initControl

 public override void _initControl()
 {
     if (null == mRadioButton || mRadioButton.IsDisposed)
     {
         mRadioButton = new System.Windows.Forms.RadioButton();
         if (null != mPoint)
         {
             mRadioButton.Location = new Point(mPoint._getX(), mPoint._getY());
         }
         if (null != mSize)
         {
             mRadioButton.Size = new Size(mSize._getWidth(), mSize._getHeight());
         }
         mRadioButton.Text = mText;
     }
 }
开发者ID:zyouhua,项目名称:weilai,代码行数:16,代码来源:RadioButton.cs


示例8: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.m_radioButton = new System.Windows.Forms.RadioButton();
     this.SuspendLayout();
     //
     // m_radioButton
     //
     this.m_radioButton.AutoSize = true;
     this.m_radioButton.Location = new System.Drawing.Point(0, 0);
     this.m_radioButton.Name = "m_radioButton";
     this.m_radioButton.Size = new System.Drawing.Size(104, 24);
     this.m_radioButton.TabIndex = 0;
     this.m_radioButton.TabStop = true;
     this.m_radioButton.Text = "radioButton";
     this.m_radioButton.UseVisualStyleBackColor = true;
     this.m_radioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
     //
     // RadioGroupBox
     //
     this.ControlAdded += new System.Windows.Forms.ControlEventHandler(this.CheckGroupBox_ControlAdded);
     this.ResumeLayout(false);
 }
开发者ID:piaolingzxh,项目名称:Justin,代码行数:26,代码来源:RadioGroupBox.designer.cs


示例9: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.radioDSDisabled = new System.Windows.Forms.RadioButton();
     this.textChars = new System.Windows.Forms.TextBox();
     this.btnAttach = new System.Windows.Forms.Button();
     this.radioSendExp = new System.Windows.Forms.RadioButton();
     this.lblDSConnection = new System.Windows.Forms.Label();
     this.textFriendName = new System.Windows.Forms.TextBox();
     this.groupConnectionMode = new System.Windows.Forms.GroupBox();
     this.radioDSEnabled = new System.Windows.Forms.RadioButton();
     this.textFriendComputer = new System.Windows.Forms.TextBox();
     this.lblRemoteQueue = new System.Windows.Forms.Label();
     this.groupSendType = new System.Windows.Forms.GroupBox();
     this.radioSendRec = new System.Windows.Forms.RadioButton();
     this.btnCancel = new System.Windows.Forms.Button();
     this.picture1 = new System.Windows.Forms.PictureBox();
     this.btnConnect = new System.Windows.Forms.Button();
     this.lblRemoteComputer = new System.Windows.Forms.Label();
     this.groupConnectionMode.SuspendLayout();
     this.groupSendType.SuspendLayout();
     this.SuspendLayout();
     //
     // radioDSDisabled
     //
     this.radioDSDisabled.Location = new System.Drawing.Point(8, 56);
     this.radioDSDisabled.Name = "radioDSDisabled";
     this.radioDSDisabled.Size = new System.Drawing.Size(216, 16);
     this.radioDSDisabled.TabIndex = 1;
     this.radioDSDisabled.Text = "Private queue";
     //
     // textChars
     //
     this.textChars.Location = new System.Drawing.Point(16, 272);
     this.textChars.Name = "textChars";
     this.textChars.Size = new System.Drawing.Size(384, 20);
     this.textChars.TabIndex = 11;
     this.textChars.Text = "";
     this.textChars.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textChars_KeyPress);
     //
     // btnAttach
     //
     this.btnAttach.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.btnAttach.Location = new System.Drawing.Point(312, 304);
     this.btnAttach.Name = "btnAttach";
     this.btnAttach.Size = new System.Drawing.Size(88, 24);
     this.btnAttach.TabIndex = 3;
     this.btnAttach.Text = "Start Sending";
     this.btnAttach.Click += new System.EventHandler(this.btnAttach_Click);
     //
     // radioSendExp
     //
     this.radioSendExp.Checked = true;
     this.radioSendExp.Location = new System.Drawing.Point(16, 24);
     this.radioSendExp.Name = "radioSendExp";
     this.radioSendExp.Size = new System.Drawing.Size(104, 16);
     this.radioSendExp.TabIndex = 0;
     this.radioSendExp.TabStop = true;
     this.radioSendExp.Text = "&Express";
     //
     // lblDSConnection
     //
     this.lblDSConnection.Location = new System.Drawing.Point(16, 384);
     this.lblDSConnection.Name = "lblDSConnection";
     this.lblDSConnection.Size = new System.Drawing.Size(100, 16);
     this.lblDSConnection.TabIndex = 7;
     //
     // textFriendName
     //
     this.textFriendName.Location = new System.Drawing.Point(160, 304);
     this.textFriendName.Name = "textFriendName";
     this.textFriendName.Size = new System.Drawing.Size(144, 20);
     this.textFriendName.TabIndex = 2;
     this.textFriendName.Text = "";
     this.textFriendName.TextChanged += new System.EventHandler(this.textFriendName_TextChanged);
     //
     // groupConnectionMode
     //
     this.groupConnectionMode.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                                       this.radioDSDisabled,
                                                                                       this.radioDSEnabled});
     this.groupConnectionMode.Location = new System.Drawing.Point(96, 304);
     this.groupConnectionMode.Name = "groupConnectionMode";
     this.groupConnectionMode.Size = new System.Drawing.Size(232, 96);
     this.groupConnectionMode.TabIndex = 10;
     this.groupConnectionMode.TabStop = false;
     this.groupConnectionMode.Text = "Queue Type";
     //
     // radioDSEnabled
     //
     this.radioDSEnabled.Checked = true;
     this.radioDSEnabled.Location = new System.Drawing.Point(8, 24);
     this.radioDSEnabled.Name = "radioDSEnabled";
     this.radioDSEnabled.Size = new System.Drawing.Size(208, 16);
     this.radioDSEnabled.TabIndex = 0;
     this.radioDSEnabled.TabStop = true;
     this.radioDSEnabled.Text = "Public queue";
//.........这里部分代码省略.........
开发者ID:dbremner,项目名称:Windows-classic-samples,代码行数:101,代码来源:form1.cs


示例10: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_PllaAyutaTrabajadores));
     this.lbltotalregistros = new System.Windows.Forms.Label();
     this.lblanulado = new System.Windows.Forms.Label();
     this.GroupBox4 = new System.Windows.Forms.GroupBox();
     this.btnCerrar = new System.Windows.Forms.Button();
     this.btnSeleccionar = new System.Windows.Forms.Button();
     this.dgProveedor = new System.Windows.Forms.DataGridView();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.chktipoplanilla = new System.Windows.Forms.CheckBox();
     this.cmbtipoplanilla = new System.Windows.Forms.ComboBox();
     this.GroupBox3 = new System.Windows.Forms.GroupBox();
     this.rbtodos3 = new System.Windows.Forms.RadioButton();
     this.rbtodos2 = new System.Windows.Forms.RadioButton();
     this.rbtodos1 = new System.Windows.Forms.RadioButton();
     this.btnrefrescar = new System.Windows.Forms.Button();
     this.chknombre = new System.Windows.Forms.CheckBox();
     this.txtnombre = new System.Windows.Forms.TextBox();
     this.fichaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nrodni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nombrelargo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.situtrabname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.activo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipopllaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.GroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgProveedor)).BeginInit();
     this.GroupBox1.SuspendLayout();
     this.GroupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // lbltotalregistros
     //
     this.lbltotalregistros.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotalregistros.Location = new System.Drawing.Point(567, 478);
     this.lbltotalregistros.Name = "lbltotalregistros";
     this.lbltotalregistros.Size = new System.Drawing.Size(270, 23);
     this.lbltotalregistros.TabIndex = 9;
     //
     // lblanulado
     //
     this.lblanulado.AutoSize = true;
     this.lblanulado.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lblanulado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblanulado.ForeColor = System.Drawing.Color.Red;
     this.lblanulado.Location = new System.Drawing.Point(12, 483);
     this.lblanulado.Name = "lblanulado";
     this.lblanulado.Size = new System.Drawing.Size(72, 13);
     this.lblanulado.TabIndex = 7;
     this.lblanulado.Text = "ANULADOS :";
     this.lblanulado.Visible = false;
     //
     // GroupBox4
     //
     this.GroupBox4.Controls.Add(this.btnCerrar);
     this.GroupBox4.Controls.Add(this.btnSeleccionar);
     this.GroupBox4.Location = new System.Drawing.Point(277, 470);
     this.GroupBox4.Name = "GroupBox4";
     this.GroupBox4.Size = new System.Drawing.Size(188, 42);
     this.GroupBox4.TabIndex = 8;
     this.GroupBox4.TabStop = false;
     //
     // btnCerrar
     //
     this.btnCerrar.Image = global::BapFormulariosNet.Properties.Resources.Cancela16;
     this.btnCerrar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCerrar.Location = new System.Drawing.Point(96, 11);
     this.btnCerrar.Name = "btnCerrar";
     this.btnCerrar.Size = new System.Drawing.Size(86, 25);
     this.btnCerrar.TabIndex = 1;
     this.btnCerrar.Text = "&Cancelar  ";
     this.btnCerrar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCerrar.UseVisualStyleBackColor = true;
     this.btnCerrar.Click += new System.EventHandler(this.btnCerrar_Click);
     //
     // btnSeleccionar
     //
     this.btnSeleccionar.Image = global::BapFormulariosNet.Properties.Resources.Acepta16;
     this.btnSeleccionar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSeleccionar.Location = new System.Drawing.Point(6, 11);
     this.btnSeleccionar.Name = "btnSeleccionar";
     this.btnSeleccionar.Size = new System.Drawing.Size(86, 25);
     this.btnSeleccionar.TabIndex = 0;
     this.btnSeleccionar.Text = "&Seleccionar";
     this.btnSeleccionar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSeleccionar.UseVisualStyleBackColor = true;
     this.btnSeleccionar.Click += new System.EventHandler(this.btnSeleccionar_Click);
     //
     // dgProveedor
     //
     this.dgProveedor.AllowUserToAddRows = false;
     this.dgProveedor.AllowUserToDeleteRows = false;
     this.dgProveedor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
//.........这里部分代码省略.........
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:101,代码来源:Frm_PllaAyutaTrabajadores.designer.cs


示例11: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainAssets));
     this.listBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.assetsDataSet1 = new WWassets.assetsDataSet1();
     this.assetsGB = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel5 = new System.Windows.Forms.Panel();
     this.assetsListBox = new System.Windows.Forms.ListBox();
     this.panel4 = new System.Windows.Forms.Panel();
     this.notificationlbl = new System.Windows.Forms.Label();
     this.personPCRB = new System.Windows.Forms.RadioButton();
     this.miscPCRB = new System.Windows.Forms.RadioButton();
     this.panel3 = new System.Windows.Forms.Panel();
     this.serialrb = new System.Windows.Forms.RadioButton();
     this.firstnameRB = new System.Windows.Forms.RadioButton();
     this.lastnameRB = new System.Windows.Forms.RadioButton();
     this.miscnamerb = new System.Windows.Forms.RadioButton();
     this.assetsearchtb = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.miscnamelbl = new System.Windows.Forms.Label();
     this.addAssetBTN = new System.Windows.Forms.Button();
     this.lNameTB = new System.Windows.Forms.TextBox();
     this.firstNameLbl = new System.Windows.Forms.Label();
     this.tagLbl = new System.Windows.Forms.Label();
     this.computerNameTB = new System.Windows.Forms.TextBox();
     this.costcentertb = new System.Windows.Forms.TextBox();
     this.productKeyTB = new System.Windows.Forms.TextBox();
     this.locationcb = new System.Windows.Forms.ComboBox();
     this.dateInServiceTB = new System.Windows.Forms.TextBox();
     this.departmentcb = new System.Windows.Forms.ComboBox();
     this.formfactorcb = new System.Windows.Forms.ComboBox();
     this.fNameTB = new System.Windows.Forms.TextBox();
     this.lNameLbl = new System.Windows.Forms.Label();
     this.pricetb = new System.Windows.Forms.TextBox();
     this.tagNumTB = new System.Windows.Forms.TextBox();
     this.makeLbl = new System.Windows.Forms.Label();
     this.modelLbl = new System.Windows.Forms.Label();
     this.serialLbl = new System.Windows.Forms.Label();
     this.formfactorlbl = new System.Windows.Forms.Label();
     this.makeTB = new System.Windows.Forms.TextBox();
     this.serialTB = new System.Windows.Forms.TextBox();
     this.modelTB = new System.Windows.Forms.TextBox();
     this.pricelbl = new System.Windows.Forms.Label();
     this.locationlbl = new System.Windows.Forms.Label();
     this.costcenterlbl = new System.Windows.Forms.Label();
     this.departmentlbl = new System.Windows.Forms.Label();
     this.dateInServiceLbl = new System.Windows.Forms.Label();
     this.productKeyLbl = new System.Windows.Forms.Label();
     this.computerNameLbl = new System.Windows.Forms.Label();
     this.userInfoTA = new WWassets.assetsDataSet1TableAdapters.userInfoTA();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.getHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.listTableAdapter1 = new WWassets.assetsDataSetTableAdapters.listTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.listBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.assetsDataSet1)).BeginInit();
     this.assetsGB.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listBindingSource
     //
     this.listBindingSource.DataMember = "list";
     this.listBindingSource.DataSource = this.assetsDataSet1;
     //
     // assetsDataSet1
     //
     this.assetsDataSet1.DataSetName = "assetsDataSet1";
     this.assetsDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // assetsGB
     //
     this.assetsGB.Controls.Add(this.splitContainer1);
     this.assetsGB.Dock = System.Windows.Forms.DockStyle.Fill;
     this.assetsGB.Location = new System.Drawing.Point(0, 24);
     this.assetsGB.Name = "assetsGB";
     this.assetsGB.Size = new System.Drawing.Size(556, 606);
     this.assetsGB.TabIndex = 1;
     this.assetsGB.TabStop = false;
     //
     // splitContainer1
     //
//.........这里部分代码省略.........
开发者ID:AustinSkarphol,项目名称:WallworkProjects,代码行数:101,代码来源:mainAssets.Designer+(AustinWorkd-PC's+conflicted+copy+2013-02-18).cs


示例12: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.button3 = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.cbNhanVien = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.rbDaTaoThe_InPin = new System.Windows.Forms.RadioButton();
     this.rbChuaMoTK_The = new System.Windows.Forms.RadioButton();
     this.button4 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.tbNoiNhanThe = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label6 = new System.Windows.Forms.Label();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.tbCMND = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.rbChuyenXuongQuay = new System.Windows.Forms.RadioButton();
     this.rbNgayNone = new System.Windows.Forms.RadioButton();
     this.rbDaGiaoThe = new System.Windows.Forms.RadioButton();
     this.rbDaTaoThe = new System.Windows.Forms.RadioButton();
     this.button1 = new System.Windows.Forms.Button();
     this.tbFullName = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.groupBox1.Controls.Add(this.button3);
     this.groupBox1.Controls.Add(this.groupBox3);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.tbCMND);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Controls.Add(this.tbFullName);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.button2);
     this.groupBox1.Location = new System.Drawing.Point(2, 246);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
     this.groupBox1.Size = new System.Drawing.Size(988, 166);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Search";
     //
     // button3
     //
     this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button3.Location = new System.Drawing.Point(375, 124);
     this.button3.Margin = new System.Windows.Forms.Padding(2);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(70, 27);
     this.button3.TabIndex = 20;
     this.button3.Text = "Refresh";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label8);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.cbNhanVien);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.groupBox4);
     this.groupBox3.Controls.Add(this.button4);
     this.groupBox3.Controls.Add(this.button6);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.tbNoiNhanThe);
     this.groupBox3.Controls.Add(this.dateTimePicker1);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Controls.Add(this.dateTimePicker2);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Location = new System.Drawing.Point(467, 18);
     this.groupBox3.Name = "groupBox3";
//.........这里部分代码省略.........
开发者ID:phongferrari,项目名称:source-code-nama,代码行数:101,代码来源:Frm_Card_Issuance.designer.cs


示例13: InitializeComponent

 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmWaterSoilConservation));
     this.cmbC = new System.Windows.Forms.ComboBox();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnOK = new System.Windows.Forms.Button();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.rbtnNDVI = new System.Windows.Forms.RadioButton();
     this.rbtnVegCover = new System.Windows.Forms.RadioButton();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cmbSoilOrganic = new System.Windows.Forms.ComboBox();
     this.cmbSoilSand = new System.Windows.Forms.ComboBox();
     this.cmbSoilSlit = new System.Windows.Forms.ComboBox();
     this.label15 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cmbSoilClay = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.rbtnPcp = new System.Windows.Forms.RadioButton();
     this.txtPcpPath = new System.Windows.Forms.TextBox();
     this.rbtnR = new System.Windows.Forms.RadioButton();
     this.btnOpenPcp = new System.Windows.Forms.Button();
     this.cmbR = new System.Windows.Forms.ComboBox();
     this.cmbP = new System.Windows.Forms.ComboBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.txtCellSize = new System.Windows.Forms.TextBox();
     this.chkbCellsize = new System.Windows.Forms.CheckBox();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbDem = new System.Windows.Forms.ComboBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.txtSavePath = new System.Windows.Forms.TextBox();
     this.btnSavePath = new System.Windows.Forms.Button();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtPcpPrefix = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtPcpSuffix = new System.Windows.Forms.TextBox();
     this.groupBox5.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.SuspendLayout();
     //
     // cmbC
     //
     this.cmbC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbC.FormattingEnabled = true;
     this.cmbC.Location = new System.Drawing.Point(314, 14);
     this.cmbC.Name = "cmbC";
     this.cmbC.Size = new System.Drawing.Size(218, 20);
     this.cmbC.TabIndex = 6;
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(457, 454);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 22;
     this.btnCancel.Text = "取消";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(341, 454);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 21;
     this.btnOK.Text = "确定";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.rbtnNDVI);
     this.groupBox5.Controls.Add(this.rbtnVegCover);
     this.groupBox5.Controls.Add(this.cmbC);
     this.groupBox5.Location = new System.Drawing.Point(15, 291);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(547, 42);
     this.groupBox5.TabIndex = 17;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "地表覆被因子C[0-1]";
     //
     // rbtnNDVI
     //
     this.rbtnNDVI.AutoSize = true;
     this.rbtnNDVI.Location = new System.Drawing.Point(151, 15);
     this.rbtnNDVI.Name = "rbtnNDVI";
     this.rbtnNDVI.Size = new System.Drawing.Size(143, 16);
     this.rbtnNDVI.TabIndex = 7;
     this.rbtnNDVI.TabStop = true;
     this.rbtnNDVI.Text = "归一化植被指数,NDVI";
     this.rbtnNDVI.UseVisualStyleBackColor = true;
//.........这里部分代码省略.........
开发者ID:lovelll,项目名称:DQHP,代码行数:101,代码来源:frmWaterSoilConservation.designer.cs


示例14: InitializeComponent

 /// <summary>
 /// 
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Label label2;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MovieAnimationItem));
     this.outputBox = new System.Windows.Forms.GroupBox();
     this.outputCheckBox = new System.Windows.Forms.CheckBox();
     this.sizeDetailLabel = new System.Windows.Forms.Label();
     this.maxSizeTextBox = new System.Windows.Forms.TextBox();
     this.maxSizeRadio = new System.Windows.Forms.RadioButton();
     this.noLimitRadio = new System.Windows.Forms.RadioButton();
     this.label1 = new System.Windows.Forms.Label();
     this.aviFileName = new Ecell.IDE.Plugins.PathwayWindow.UIComponent.PropertySaveFileItem();
     label2 = new System.Windows.Forms.Label();
     this.outputBox.SuspendLayout();
     this.SuspendLayout();
     //
     // label2
     //
     resources.ApplyResources(label2, "label2");
     label2.Name = "label2";
     //
     // outputBox
     //
     resources.ApplyResources(this.outputBox, "outputBox");
     this.outputBox.Controls.Add(this.outputCheckBox);
     this.outputBox.Controls.Add(this.sizeDetailLabel);
     this.outputBox.Controls.Add(label2);
     this.outputBox.Controls.Add(this.maxSizeTextBox);
     this.outputBox.Controls.Add(this.maxSizeRadio);
     this.outputBox.Controls.Add(this.noLimitRadio);
     this.outputBox.Controls.Add(this.label1);
     this.outputBox.Controls.Add(this.aviFileName);
     this.outputBox.Name = "outputBox";
     this.outputBox.TabStop = false;
     //
     // outputCheckBox
     //
     resources.ApplyResources(this.outputCheckBox, "outputCheckBox");
     this.outputCheckBox.Checked = true;
     this.outputCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.outputCheckBox.Name = "outputCheckBox";
     this.outputCheckBox.UseVisualStyleBackColor = true;
     //
     // sizeDetailLabel
     //
     resources.ApplyResources(this.sizeDetailLabel, "sizeDetailLabel");
     this.sizeDetailLabel.Name = "sizeDetailLabel";
     //
     // maxSizeTextBox
     //
     resources.ApplyResources(this.maxSizeTextBox, "maxSizeTextBox");
     this.maxSizeTextBox.Name = "maxSizeTextBox";
     this.maxSizeTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.maxSizeTextBox_Validating);
     //
     // maxSizeRadio
     //
     resources.ApplyResources(this.maxSizeRadio, "maxSizeRadio");
     this.maxSizeRadio.Name = "maxSizeRadio";
     this.maxSizeRadio.TabStop = true;
     this.maxSizeRadio.UseVisualStyleBackColor = true;
     //
     // noLimitRadio
     //
     resources.ApplyResources(this.noLimitRadio, "noLimitRadio");
     this.noLimitRadio.Checked = true;
     this.noLimitRadio.Name = "noLimitRadio";
     this.noLimitRadio.TabStop = true;
     this.noLimitRadio.UseVisualStyleBackColor = true;
     this.noLimitRadio.CheckedChanged += new System.EventHandler(this.noLimitRadio_CheckedChanged);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // aviFileName
     //
     resources.ApplyResources(this.aviFileName, "aviFileName");
     this.aviFileName.FileName = "ecell-ide.avi";
     this.aviFileName.Filter = null;
     this.aviFileName.FilterIndex = 0;
     this.aviFileName.Name = "aviFileName";
     //
     // MovieAnimationItem
     //
     this.Controls.Add(this.outputBox);
     this.Name = "MovieAnimationItem";
     resources.ApplyResources(this, "$this");
     this.outputBox.ResumeLayout(false);
     this.outputBox.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:ecell,项目名称:ecell3-ide,代码行数:96,代码来源:MovieAnimationItem.cs


示例15: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnApply = new System.Windows.Forms.Button();
     this.trackTolLo = new System.Windows.Forms.TrackBar();
     this.trackTolHi = new System.Windows.Forms.TrackBar();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.trackSoften = new System.Windows.Forms.TrackBar();
     this.label4 = new System.Windows.Forms.Label();
     this.cboForeground = new System.Windows.Forms.ComboBox();
     this.cboBackground = new System.Windows.Forms.ComboBox();
     this.label5 = new System.Windows.Forms.Label();
     this.btnForeground = new System.Windows.Forms.Button();
     this.btnBackground = new System.Windows.Forms.Button();
     this.lblSpread = new System.Windows.Forms.Label();
     this.lstHistory = new System.Windows.Forms.ListBox();
     this.btnSaveAs = new System.Windows.Forms.Button();
     this.chkBlender = new System.Windows.Forms.CheckBox();
     this.button1 = new System.Windows.Forms.Button();
     this.optSoft1 = new System.Windows.Forms.RadioButton();
     this.optSoft2 = new System.Windows.Forms.RadioButton();
     ((System.ComponentModel.ISupportInitialize)(this.trackTolLo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackTolHi)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackSoften)).BeginInit();
     this.SuspendLayout();
     //
     // btnApply
     //
     this.btnApply.Location = new System.Drawing.Point(263, 213);
     this.btnApply.Name = "btnApply";
     this.btnApply.Size = new System.Drawing.Size(82, 23);
     this.btnApply.TabIndex = 7;
     this.btnApply.Text = "&Verkställ";
     this.btnApply.UseVisualStyleBackColor = true;
     this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
     //
     // trackTolLo
     //
     this.trackTolLo.LargeChange = 1;
     this.trackTolLo.Location = new System.Drawing.Point(71, 60);
     this.trackTolLo.Maximum = 40;
     this.trackTolLo.Name = "trackTolLo";
     this.trackTolLo.Size = new System.Drawing.Size(274, 45);
     this.trackTolLo.TabIndex = 5;
     this.trackTolLo.TickStyle = System.Windows.Forms.TickStyle.Both;
     this.trackTolLo.Value = 2;
     //
     // trackTolHi
     //
     this.trackTolHi.LargeChange = 1;
     this.trackTolHi.Location = new System.Drawing.Point(71, 111);
     this.trackTolHi.Maximum = 40;
     this.trackTolHi.Name = "trackTolHi";
     this.trackTolHi.Size = new System.Drawing.Size(274, 45);
     this.trackTolHi.TabIndex = 6;
     this.trackTolHi.TickStyle = System.Windows.Forms.TickStyle.Both;
     this.trackTolHi.Value = 18;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 73);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(39, 13);
     this.label1.TabIndex = 8;
     this.label1.Text = "Tol låg";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 124);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(43, 13);
     this.label2.TabIndex = 9;
     this.label2.Text = "Tol hög";
     //
     // trackSoften
     //
     this.trackSoften.LargeChange = 1;
     this.trackSoften.Location = new System.Drawing.Point(71, 162);
     this.trackSoften.Maximum = 40;
     this.trackSoften.Name = "trackSoften";
     this.trackSoften.Size = new System.Drawing.Size(274, 45);
     this.trackSoften.TabIndex = 10;
     this.trackSoften.TickStyle = System.Windows.Forms.TickStyle.Both;
     this.trackSoften.Value = 10;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(12, 9);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(33, 13);
     this.label4.TabIndex = 13;
     this.label4.Text = "Motiv";
     //
//.........这里部分代码省略.........
开发者ID:factor10,项目名称:Adrenochrome,代码行数:101,<

鲜花

握手

雷人

路过

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

请发表评论

全部评论

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

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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