Ejemplo n.º 1
0
 public MainForm()
 {
     InitializeComponent();
     m_sliderCameraSpeed = this.sliderItem1;
     m_MainForm = this;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Copies the SliderItem specific properties to new instance of the item.
 /// </summary>
 /// <param name="copy">New SliderItem instance.</param>
 internal void InternalCopyToItem(SliderItem copy)
 {
     CopyToItem(copy);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Returns copy of the item.
 /// </summary>
 public override BaseItem Copy()
 {
     SliderItem objCopy = new SliderItem(m_Name);
     this.CopyToItem(objCopy);
     return objCopy;
 }
 /// <summary>
 /// Creates new instance of the object and initializes it with default values.
 /// </summary>
 /// <param name="overflowItem">Reference to the Slider item being rendered.</param>
 /// <param name="g">Reference to the graphics object.</param>
 public SliderItemRendererEventArgs(SliderItem item, Graphics g)
 {
     this.SliderItem = item;
     this.Graphics = g;
 }
Ejemplo n.º 5
0
 internal static DevComponents.DotNetBar.Rendering.SliderPainter CreateSliderPainter(SliderItem slider)
 {
     return m_SliderPainter;
 }
Ejemplo n.º 6
0
 public MainForm()
 {
     InitializeComponent();
     m_sliderCameraSpeed = this.sliderItem1;
     m_MainForm          = this;
 }