Example #1
0
        private static void StyleChanged(ToggleSwitchButton o, AvaloniaPropertyChangedEventArgs e)
        {
            IStyle style = e.NewValue as IStyle;

            if (style != null)
            {
                o.Styles.Add(style);
            }
        }
Example #2
0
 private void IsCheckedChanged(ToggleSwitchButton o, AvaloniaPropertyChangedEventArgs e)
 {
     UpdateThumb();
 }