VScrollBar ValueChanged : ScrollBar « GUI Windows Form « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » GUI Windows Form » ScrollBarScreenshots 
VScrollBar ValueChanged
 


using System;
using System.Drawing;
using System.Windows.Forms;
   
class ColorScroll: Form
{
     Panel        panel;
     Label[]      alabelName  = new Label[3];
     Label[]      alabelValue = new Label[3];
     VScrollBar[] avscroll    = new VScrollBar[3];
   
     public static void Main()
     {
          Application.Run(new ColorScroll());
     }
     public ColorScroll()
     {
          Color[] acolor = Color.Red, Color.Green, Color.Blue };
  
          panel = new Panel();
          panel.Parent = this;
          panel.Location = new Point(00);
          panel.BackColor = Color.White;
   
          for (int i = 0; i < 3; i++)
          {
               alabelName[inew Label();
               alabelName[i].Parent = panel;
               alabelName[i].ForeColor = acolor[i];
               alabelName[i].Text = "&" + acolor[i].ToKnownColor();
               alabelName[i].TextAlign = ContentAlignment.MiddleCenter;
   
               avscroll[inew VScrollBar();
               avscroll[i].Parent = panel;
               avscroll[i].SmallChange = 1;
               avscroll[i].LargeChange = 16;
               avscroll[i].Minimum  = 0;
               avscroll[i].Maximum = 255 + avscroll[i].LargeChange - 1;
               avscroll[i].ValueChanged += new EventHandler(ScrollOnValueChanged);
               avscroll[i].TabStop = true;
   
               alabelValue[inew Label();
               alabelValue[i].Parent = panel;
               alabelValue[i].TextAlign = ContentAlignment.MiddleCenter;
          }
          Color color = BackColor;
          avscroll[0].Value = color.R;  // Generates ValueChanged event
          avscroll[1].Value = color.G;
          avscroll[2].Value = color.B;
   
          OnResize(EventArgs.Empty);
     }
     protected override void OnResize(EventArgs ea)
     {
          base.OnResize(ea);
   
          int cx = ClientSize.Width;
          int cy = ClientSize.Height;
          int cyFont = Font.Height;
   
          panel.Size = new Size(cx / 2, cy);
   
          for (int i = 0; i < 3; i++)
          {
               alabelName[i].Location = new Point(i * cx / 6, cyFont / 2);
               alabelName[i].Size = new Size(cx / 6, cyFont);
   
               avscroll[i].Location = new Point((* i + 1* cx / 24,
                                                * cyFont);
               avscroll[i].Size = new Size(cx / 12, cy - * cyFont);
   
               alabelValue[i].Location = new Point(i * cx / 6,
                                                   cy - * cyFont / 2);
               alabelValue[i].Size = new Size(cx / 6, cyFont);
          }
     }
     void ScrollOnValueChanged(Object obj, EventArgs ea)
     {
          for (int i = 0; i < 3; i++)
               if((VScrollBarobj == avscroll[i])
                    alabelValue[i].Text = avscroll[i].Value.ToString();
   
          BackColor = Color.FromArgb(avscroll[0].Value, 
                                     avscroll[1].Value,
                                     avscroll[2].Value);
     }
}

 
Related examples in the same category
1.Use ScrollBar to control the picture sizeUse ScrollBar to control the picture size
2.ScrollBars Demo ScrollBars Demo
3.Scroll event
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.