Esempio n. 1
0
 /// <summary>
 /// Renders the control using specified skin.
 /// </summary>
 /// <param name="skin">Skin to use.</param>
 protected override void render(Skin.SkinBase skin)
 {
     skin.DrawSlider(this, true, snapToNotches ? notchCount : 0, sliderBar.Width);
 }
Esempio n. 2
0
 /// <summary>
 /// Renders the control using specified skin.
 /// </summary>
 /// <param name="skin">Skin to use.</param>
 protected override void Render(Skin.SkinBase skin)
 {
     skin.DrawSlider(this, true, m_SnapToNotches ? m_NotchCount : 0, m_SliderBar.ActualWidth);
 }
Esempio n. 3
0
 /// <summary>
 /// Renders the control using specified skin.
 /// </summary>
 /// <param name="skin">Skin to use.</param>
 protected override void Render(Skin.SkinBase skin)
 {
     skin.DrawSlider(this, false, m_SnapToNotches ? m_NotchCount : 0, m_SliderBar.ActualHeight);
 }
Esempio n. 4
0
 /// <summary>
 /// Renders the control using specified skin.
 /// </summary>
 /// <param name="skin">Skin to use.</param>
 protected override void Render(Skin.SkinBase skin)
 {
     skin.DrawSlider(this, false, m_SnapToNotches && DrawNotches ? m_NotchCount : 0, m_SliderBar.Height, m_Value);
 }
 /// <summary>
 /// Renders the control using specified skin.
 /// </summary>
 /// <param name="skin">Skin to use.</param>
 protected override void Render(Skin.SkinBase skin)
 {
     skin.DrawSlider(this, true, 0, m_SliderBar.Width);
 }
Esempio n. 6
0
 /// <summary>
 /// Renders the control using specified skin.
 /// </summary>
 /// <param name="skin">Skin to use.</param>
 protected override void render(Skin.SkinBase skin)
 {
     skin.DrawSlider(this, false, snapToNotches ? notchCount : 0, sliderBar.Height);
 }