1 / 5

Gorsel Kontroller

Gorsel Kontroller. Trackbar. private void button3_Click(object sender, EventArgs e) { trackBar1.Minimum = 0; trackBar1.Maximum = 15; MessageBox.Show(trackBar1.Value.ToString()); }. Progressbar.

menges
Download Presentation

Gorsel Kontroller

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Gorsel Kontroller

  2. Trackbar private void button3_Click(object sender, EventArgs e) { trackBar1.Minimum = 0; trackBar1.Maximum = 15; MessageBox.Show(trackBar1.Value.ToString()); }

  3. Progressbar private void button4_Click(object sender, EventArgs e) { progressBar1.Minimum = 0; progressBar1.Maximum = 30000; for (int i = progressBar1.Minimum; i <= progressBar1.Maximum; i++) progressBar1.Value = i; }

  4. NumericUpDown private void button2_Click(object sender, EventArgs e) { numericUpDown1.DecimalPlaces = 0; numericUpDown1.Increment = 2; numericUpDown1.Maximum = 15; numericUpDown1.Minimum = 0; MessageBox.Show(numericUpDown1.Value.ToString()); }

  5. LBIndustrialCtrls.dll private void button3_Click(object sender, EventArgs e) { lbKnob1.MinValue = 0; lbKnob1.MaxValue = 15; MessageBox.Show(lbKnob1.Value.ToString()); }

More Related