⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usingtabs.cs

📁 this is a good book for the visual c#
💻 CS
📖 第 1 页 / 共 2 页
字号:
         // 
         // size20RadioButton
         // 
         this.size20RadioButton.Location = new System.Drawing.Point(16, 104);
         this.size20RadioButton.Name = "size20RadioButton";
         this.size20RadioButton.TabIndex = 2;
         this.size20RadioButton.Text = "20 point";
         this.size20RadioButton.CheckedChanged += new System.EventHandler(this.size20RadioButton_CheckedChanged);
         // 
         // size16RadioButton
         // 
         this.size16RadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.size16RadioButton.Location = new System.Drawing.Point(16, 64);
         this.size16RadioButton.Name = "size16RadioButton";
         this.size16RadioButton.TabIndex = 1;
         this.size16RadioButton.Text = "16 point";
         this.size16RadioButton.CheckedChanged += new System.EventHandler(this.size16RadioButton_CheckedChanged);
         // 
         // size12RadioButton
         // 
         this.size12RadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.size12RadioButton.Location = new System.Drawing.Point(16, 24);
         this.size12RadioButton.Name = "size12RadioButton";
         this.size12RadioButton.TabIndex = 0;
         this.size12RadioButton.Text = "12 point";
         this.size12RadioButton.CheckedChanged += new System.EventHandler(this.size12RadioButton_CheckedChanged);
         // 
         // messageTabPage
         // 
         this.messageTabPage.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                                     this.goodByeRadioButton,
                                                                                     this.helloRadioButton});
         this.messageTabPage.Location = new System.Drawing.Point(4, 22);
         this.messageTabPage.Name = "messageTabPage";
         this.messageTabPage.Size = new System.Drawing.Size(272, 142);
         this.messageTabPage.TabIndex = 2;
         this.messageTabPage.Text = "Message";
         this.messageTabPage.Visible = false;
         // 
         // goodByeRadioButton
         // 
         this.goodByeRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.goodByeRadioButton.Location = new System.Drawing.Point(16, 64);
         this.goodByeRadioButton.Name = "goodByeRadioButton";
         this.goodByeRadioButton.TabIndex = 1;
         this.goodByeRadioButton.Text = "Goodbye!";
         this.goodByeRadioButton.CheckedChanged += new System.EventHandler(this.goodByeRadioButton_CheckedChanged);
         // 
         // helloRadioButton
         // 
         this.helloRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.helloRadioButton.Location = new System.Drawing.Point(16, 24);
         this.helloRadioButton.Name = "helloRadioButton";
         this.helloRadioButton.TabIndex = 0;
         this.helloRadioButton.Text = "Hello!";
         this.helloRadioButton.CheckedChanged += new System.EventHandler(this.helloRadioButton_CheckedChanged);
         // 
         // aboutTabPage
         // 
         this.aboutTabPage.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                                   this.messageLabel});
         this.aboutTabPage.Location = new System.Drawing.Point(4, 22);
         this.aboutTabPage.Name = "aboutTabPage";
         this.aboutTabPage.Size = new System.Drawing.Size(272, 142);
         this.aboutTabPage.TabIndex = 3;
         this.aboutTabPage.Text = "About";
         this.aboutTabPage.Visible = false;
         // 
         // messageLabel
         // 
         this.messageLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.messageLabel.Location = new System.Drawing.Point(16, 16);
         this.messageLabel.Name = "messageLabel";
         this.messageLabel.Size = new System.Drawing.Size(248, 104);
         this.messageLabel.TabIndex = 0;
         this.messageLabel.Text = "Tabs are used to organize controls and conserve screen space.";
         // 
         // UsingTabs
         // 
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(328, 245);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                      this.displayLabel,
                                                                      this.optionsTabControl});
         this.Name = "UsingTabs";
         this.Text = "UsingTabs";
         this.optionsTabControl.ResumeLayout(false);
         this.colorTabPage.ResumeLayout(false);
         this.sizeTabPage.ResumeLayout(false);
         this.messageTabPage.ResumeLayout(false);
         this.aboutTabPage.ResumeLayout(false);
         this.ResumeLayout(false);

      }
		#endregion

      /// <summary>
      /// The main entry point for the application.
      /// </summary>
      [STAThread]
      static void Main() 
      {
         Application.Run( new UsingTabs() );
      }

      // event handler for black color radio button
      private void blackRadioButton_CheckedChanged(
         object sender, System.EventArgs e )
      {
         displayLabel.ForeColor = Color.Black;
      }

      // event handler for red color radio button
      private void redRadioButton_CheckedChanged(
         object sender, System.EventArgs e )
      {
         displayLabel.ForeColor = Color.Red;
      }

      // event handler for green color radio button
      private void greenRadioButton_CheckedChanged(
         object sender, System.EventArgs e )
      {
         displayLabel.ForeColor = Color.Green;
      }

      // event handler for size 12 radio button
      private void size12RadioButton_CheckedChanged(
         object sender, System.EventArgs e )
      {
         displayLabel.Font = 
            new Font( displayLabel.Font.Name, 12 );
      }

      // event handler for size 16 radio button
      private void size16RadioButton_CheckedChanged(
         object sender, System.EventArgs e )
      {
         displayLabel.Font = 
            new Font( displayLabel.Font.Name, 16 );
      }

      // event handler for size 20 radio button
      private void size20RadioButton_CheckedChanged(
         object sender, System.EventArgs e )
      {
         displayLabel.Font = 
            new Font( displayLabel.Font.Name, 20 );      
      }

      // event handler for message "Hello!" radio button
      private void helloRadioButton_CheckedChanged(
         object sender, System.EventArgs e )
      {
         displayLabel.Text = "Hello!";
      }

      // event handler for message "Goodbye!" radio button
      private void goodByeRadioButton_CheckedChanged(
         object sender, System.EventArgs e )
      {
         displayLabel.Text = "Goodbye!";
      }

   } // end class UsingTabs
}

/*
 ************************************************************************** 
 * (C) Copyright 2002 by Deitel & Associates, Inc. and Prentice Hall.     *
 * All Rights Reserved.                                                   *
 *                                                                        *
 * DISCLAIMER: The authors and publisher of this book have used their     *
 * best efforts in preparing the book. These efforts include the          *
 * development, research, and testing of the theories and programs        *
 * to determine their effectiveness. The authors and publisher make       *
 * no warranty of any kind, expressed or implied, with regard to these    *
 * programs or to the documentation contained in these books. The authors *
 * and publisher shall not be liable in any event for incidental or       *
 * consequential damages in connection with, or arising out of, the       *
 * furnishing, performance, or use of these programs.                     *
 **************************************************************************
*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -