Advertisement
Guest User

Untitled

a guest
Aug 8th, 2016
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.73 KB | None | 0 0
  1. /*
  2.  * Created by SharpDevelop.
  3.  * User: Sergey Krapivin
  4.  *
  5.  * To change this template use Tools | Options | Coding | Edit Standard Headers.
  6.  */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Drawing;
  10. using System.Windows.Forms;
  11.  
  12. namespace Test01
  13. {
  14.     /// <summary>
  15.     /// Description of MainForm.
  16.     /// </summary>
  17.     public partial class MainForm : Form
  18.     {
  19.         public MainForm()
  20.         {
  21.             //
  22.             // The InitializeComponent() call is required for Windows Forms designer support.
  23.             //
  24.             InitializeComponent();
  25.            
  26.             //
  27.             // TODO: Add constructor code after the InitializeComponent() call.
  28.             //
  29.         }
  30.         void ComboBox1SelectedIndexChanged(object sender, EventArgs e)
  31.         {
  32.             comboBox2.Text="changed";
  33.         }
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement