Пример #1
0
 private void radioButtonDOUBLE_CheckedChanged(object sender, EventArgs e)
 {
     if (radioButtonDOUBLE.Checked)
     {
         list = new KursachLib.List <double>();
     }
 }
Пример #2
0
 private void radioButtonSTRING_CheckedChanged(object sender, EventArgs e)
 {
     if (radioButtonSTRING.Checked)
     {
         list = new KursachLib.List <string>();
     }
 }
Пример #3
0
 private void radioButtonINT_CheckedChanged(object sender, EventArgs e)
 {
     if (radioButtonINT.Checked)
     {
         list = new KursachLib.List <int>();
     }
     ;
 }
Пример #4
0
        public SortForm(KursachLib.List _list, string data)
        {
            InitializeComponent();
            list         = _list;
            textBox.Text = data;

            list        = KursachLib.Utilites.InputList(textBox, list);
            listSelSort = list.Copy();
            listQSort   = list.Copy();
        }
Пример #5
0
 public Form1()
 {
     InitializeComponent();
     list = new KursachLib.List <int>();
 }