示例#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);
 }
示例#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);
 }
示例#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);
 }
示例#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);
 }
示例#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);
 }