예제 #1
0
 public static T AutoToolTipPlacement <T>(this T target, AutoToolTipPlacement value) where T : Slider
 {
     target.AutoToolTipPlacement = value;
     return(target);
 }
예제 #2
0
 protected virtual void OnAutoToolTipPlacementChanged(AutoToolTipPlacement oldValue, AutoToolTipPlacement newValue)
 {
 }
예제 #3
0
        public static AutoToolTipPlacement Unbox_AutoToolTipPlacement(IntPtr val)
        {
            AutoToolTipPlacement ret = (AutoToolTipPlacement)NoesisGUI_PINVOKE.Unbox_AutoToolTipPlacement(val);

            return(ret);
        }
예제 #4
0
        public static IntPtr Box_AutoToolTipPlacement(AutoToolTipPlacement val)
        {
            IntPtr ret = NoesisGUI_PINVOKE.Box_AutoToolTipPlacement((int)val);

            return(ret);
        }
 private static void SetSliderAutoToolTipPlacement(ToolTip toolTip, AutoToolTipPlacement value)
 {
     toolTip.SetValue(SliderAutoToolTipPlacementPropertyKey, value);
 }