|
@@ -9,304 +9,340 @@ using System.Windows.Media;
|
|
|
using InABox.Core;
|
|
|
using Image = System.Windows.Controls.Image;
|
|
|
|
|
|
-namespace InABox.WPF
|
|
|
+namespace InABox.WPF;
|
|
|
+
|
|
|
+public class FuncTemplateSelector : DataTemplateSelector
|
|
|
{
|
|
|
- public static class WPFUtils
|
|
|
+ public Func<object, DependencyObject, FrameworkElement?> TemplateFunc { get; set; }
|
|
|
+
|
|
|
+ public FuncTemplateSelector(Func<object, DependencyObject, FrameworkElement?> templateFunc)
|
|
|
{
|
|
|
- public static void Bind<T, TProperty>(
|
|
|
- this FrameworkElement element,
|
|
|
- DependencyProperty property,
|
|
|
- Expression<Func<T, TProperty>> expression,
|
|
|
- IValueConverter? converter = null,
|
|
|
- BindingMode mode = BindingMode.Default,
|
|
|
- string? format = null )
|
|
|
- {
|
|
|
- element.SetBinding(
|
|
|
- property,
|
|
|
- new Binding(CoreUtils.GetFullPropertyName(expression, "_"))
|
|
|
- {
|
|
|
- Converter = converter,
|
|
|
- StringFormat = format,
|
|
|
- Mode = mode
|
|
|
- }
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public static T? FindLogicalParent<T>(this DependencyObject dependencyObject)
|
|
|
- where T : DependencyObject
|
|
|
- {
|
|
|
- DependencyObject? parent = dependencyObject;
|
|
|
- do
|
|
|
- {
|
|
|
- parent = LogicalTreeHelper.GetParent(parent);
|
|
|
- } while(parent != null && parent is not T);
|
|
|
- return parent as T;
|
|
|
- }
|
|
|
+ TemplateFunc = templateFunc;
|
|
|
+ }
|
|
|
|
|
|
- public static int GetRow(this Grid grid, DependencyObject dependencyObject)
|
|
|
+ public override DataTemplate SelectTemplate(object item, DependencyObject container)
|
|
|
+ {
|
|
|
+ return TemplateGenerator.CreateDataTemplate(() =>
|
|
|
{
|
|
|
- while (true)
|
|
|
- {
|
|
|
- var parent = LogicalTreeHelper.GetParent(dependencyObject);
|
|
|
- if (parent == null)
|
|
|
- return -1;
|
|
|
- if (parent == grid)
|
|
|
- return Grid.GetRow(dependencyObject as UIElement);
|
|
|
- dependencyObject = parent;
|
|
|
- }
|
|
|
- }
|
|
|
+ return TemplateFunc(item, container);
|
|
|
+ });
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
- public static int GetRowSpan(this Grid grid, DependencyObject dependencyObject)
|
|
|
- {
|
|
|
- while (true)
|
|
|
- {
|
|
|
- var parent = LogicalTreeHelper.GetParent(dependencyObject);
|
|
|
- if (parent == null)
|
|
|
- return -1;
|
|
|
- if (parent == grid)
|
|
|
- return Grid.GetRowSpan(dependencyObject as UIElement);
|
|
|
- dependencyObject = parent;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public static int GetColumn(this Grid grid, DependencyObject dependencyObject)
|
|
|
- {
|
|
|
- while (true)
|
|
|
+public static class WPFUtils
|
|
|
+{
|
|
|
+ public static void Bind<T, TProperty>(
|
|
|
+ this FrameworkElement element,
|
|
|
+ DependencyProperty property,
|
|
|
+ T source,
|
|
|
+ Expression<Func<T, TProperty>> expression,
|
|
|
+ IValueConverter? converter = null,
|
|
|
+ string? format = null)
|
|
|
+ {
|
|
|
+ element.SetBinding(
|
|
|
+ property,
|
|
|
+ new Binding(CoreUtils.GetFullPropertyName(expression, "_"))
|
|
|
{
|
|
|
- var parent = LogicalTreeHelper.GetParent(dependencyObject);
|
|
|
- if (parent == null)
|
|
|
- return -1;
|
|
|
- if (parent == grid)
|
|
|
- return Grid.GetColumn(dependencyObject as UIElement);
|
|
|
- dependencyObject = parent;
|
|
|
+ Source = source,
|
|
|
+ Converter = converter,
|
|
|
+ StringFormat = format
|
|
|
}
|
|
|
- }
|
|
|
+ );
|
|
|
+ }
|
|
|
|
|
|
- public static int GetColumnSpan(this Grid grid, DependencyObject dependencyObject)
|
|
|
- {
|
|
|
- while (true)
|
|
|
+ public static void Bind<T, TProperty>(
|
|
|
+ this FrameworkElement element,
|
|
|
+ DependencyProperty property,
|
|
|
+ Expression<Func<T, TProperty>> expression,
|
|
|
+ IValueConverter? converter = null,
|
|
|
+ BindingMode mode = BindingMode.Default,
|
|
|
+ string? format = null )
|
|
|
+ {
|
|
|
+ element.SetBinding(
|
|
|
+ property,
|
|
|
+ new Binding(CoreUtils.GetFullPropertyName(expression, "_"))
|
|
|
{
|
|
|
- var parent = LogicalTreeHelper.GetParent(dependencyObject);
|
|
|
- if (parent == null)
|
|
|
- return -1;
|
|
|
- if (parent == grid)
|
|
|
- return Grid.GetColumnSpan(dependencyObject as UIElement);
|
|
|
- dependencyObject = parent;
|
|
|
+ Converter = converter,
|
|
|
+ StringFormat = format,
|
|
|
+ Mode = mode
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- public static void SetGridPosition(this FrameworkElement element, int row, int column, int rowspan = 1, int colspan = 1)
|
|
|
- {
|
|
|
- element.SetValue(Grid.ColumnProperty, column);
|
|
|
- element.SetValue(Grid.ColumnSpanProperty, Math.Max(1, colspan));
|
|
|
- element.SetValue(Grid.RowProperty, row);
|
|
|
- element.SetValue(Grid.RowSpanProperty, Math.Max(1, rowspan));
|
|
|
- }
|
|
|
- public static Grid AddChild(this Grid grid, FrameworkElement element, int row, int column, int rowSpan = 1, int colSpan = 1)
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public static T? FindLogicalParent<T>(this DependencyObject dependencyObject)
|
|
|
+ where T : DependencyObject
|
|
|
+ {
|
|
|
+ DependencyObject? parent = dependencyObject;
|
|
|
+ do
|
|
|
{
|
|
|
- element.SetGridPosition(row, column, rowSpan, colSpan);
|
|
|
- grid.Children.Add(element);
|
|
|
- return grid;
|
|
|
- }
|
|
|
+ parent = LogicalTreeHelper.GetParent(parent);
|
|
|
+ } while(parent != null && parent is not T);
|
|
|
+ return parent as T;
|
|
|
+ }
|
|
|
|
|
|
- public static IEnumerable<T> FindVisualChildren<T>(this DependencyObject depObj)
|
|
|
+ public static int GetRow(this Grid grid, DependencyObject dependencyObject)
|
|
|
+ {
|
|
|
+ while (true)
|
|
|
{
|
|
|
- if (depObj != null)
|
|
|
- //ContentControl cc = depObj as ContentControl;
|
|
|
- //if (cc != null)
|
|
|
- //{
|
|
|
- // if (cc.Content == null)
|
|
|
- // yield return null;
|
|
|
- // if (cc.Content is T)
|
|
|
- // yield return cc.Content as T;
|
|
|
- // foreach (var child in FindVisualChildren<T>(cc.Content as DependencyObject))
|
|
|
- // yield return child;
|
|
|
- //}
|
|
|
- //else
|
|
|
- for (var i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
|
|
|
- {
|
|
|
- var child = VisualTreeHelper.GetChild(depObj, i);
|
|
|
- if (child is null)
|
|
|
- continue;
|
|
|
-
|
|
|
- if (child is T t)
|
|
|
- yield return t;
|
|
|
-
|
|
|
- foreach (var childOfChild in FindVisualChildren<T>(child))
|
|
|
- yield return childOfChild;
|
|
|
- }
|
|
|
+ var parent = LogicalTreeHelper.GetParent(dependencyObject);
|
|
|
+ if (parent == null)
|
|
|
+ return -1;
|
|
|
+ if (parent == grid)
|
|
|
+ return Grid.GetRow(dependencyObject as UIElement);
|
|
|
+ dependencyObject = parent;
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- #region Grid Columns + Rows
|
|
|
-
|
|
|
- public static ColumnDefinition AddColumn(this Grid grid, GridUnitType type, double value = 1)
|
|
|
+ public static int GetRowSpan(this Grid grid, DependencyObject dependencyObject)
|
|
|
+ {
|
|
|
+ while (true)
|
|
|
{
|
|
|
- var colDef = new ColumnDefinition { Width = new GridLength(value, type) };
|
|
|
- grid.ColumnDefinitions.Add(colDef);
|
|
|
- return colDef;
|
|
|
+ var parent = LogicalTreeHelper.GetParent(dependencyObject);
|
|
|
+ if (parent == null)
|
|
|
+ return -1;
|
|
|
+ if (parent == grid)
|
|
|
+ return Grid.GetRowSpan(dependencyObject as UIElement);
|
|
|
+ dependencyObject = parent;
|
|
|
}
|
|
|
- public static ColumnDefinition AddColumn(this Grid grid, double value)
|
|
|
+ }
|
|
|
+
|
|
|
+ public static int GetColumn(this Grid grid, DependencyObject dependencyObject)
|
|
|
+ {
|
|
|
+ while (true)
|
|
|
{
|
|
|
- var colDef = new ColumnDefinition { Width = new GridLength(value) };
|
|
|
- grid.ColumnDefinitions.Add(colDef);
|
|
|
- return colDef;
|
|
|
+ var parent = LogicalTreeHelper.GetParent(dependencyObject);
|
|
|
+ if (parent == null)
|
|
|
+ return -1;
|
|
|
+ if (parent == grid)
|
|
|
+ return Grid.GetColumn(dependencyObject as UIElement);
|
|
|
+ dependencyObject = parent;
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- public static RowDefinition AddRow(this Grid grid, GridUnitType type, double value = 1)
|
|
|
- {
|
|
|
- var rowDef = new RowDefinition { Height = new GridLength(value, type) };
|
|
|
- grid.RowDefinitions.Add(rowDef);
|
|
|
- return rowDef;
|
|
|
- }
|
|
|
- public static RowDefinition AddRow(this Grid grid, double value)
|
|
|
+ public static int GetColumnSpan(this Grid grid, DependencyObject dependencyObject)
|
|
|
+ {
|
|
|
+ while (true)
|
|
|
{
|
|
|
- var rowDef = new RowDefinition { Height = new GridLength(value) };
|
|
|
- grid.RowDefinitions.Add(rowDef);
|
|
|
- return rowDef;
|
|
|
+ var parent = LogicalTreeHelper.GetParent(dependencyObject);
|
|
|
+ if (parent == null)
|
|
|
+ return -1;
|
|
|
+ if (parent == grid)
|
|
|
+ return Grid.GetColumnSpan(dependencyObject as UIElement);
|
|
|
+ dependencyObject = parent;
|
|
|
}
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void SetGridPosition(this FrameworkElement element, int row, int column, int rowspan = 1, int colspan = 1)
|
|
|
+ {
|
|
|
+ element.SetValue(Grid.ColumnProperty, column);
|
|
|
+ element.SetValue(Grid.ColumnSpanProperty, Math.Max(1, colspan));
|
|
|
+ element.SetValue(Grid.RowProperty, row);
|
|
|
+ element.SetValue(Grid.RowSpanProperty, Math.Max(1, rowspan));
|
|
|
+ }
|
|
|
+ public static Grid AddChild(this Grid grid, FrameworkElement element, int row, int column, int rowSpan = 1, int colSpan = 1)
|
|
|
+ {
|
|
|
+ element.SetGridPosition(row, column, rowSpan, colSpan);
|
|
|
+ grid.Children.Add(element);
|
|
|
+ return grid;
|
|
|
+ }
|
|
|
|
|
|
- #endregion
|
|
|
+ public static IEnumerable<T> FindVisualChildren<T>(this DependencyObject depObj)
|
|
|
+ {
|
|
|
+ if (depObj != null)
|
|
|
+ //ContentControl cc = depObj as ContentControl;
|
|
|
+ //if (cc != null)
|
|
|
+ //{
|
|
|
+ // if (cc.Content == null)
|
|
|
+ // yield return null;
|
|
|
+ // if (cc.Content is T)
|
|
|
+ // yield return cc.Content as T;
|
|
|
+ // foreach (var child in FindVisualChildren<T>(cc.Content as DependencyObject))
|
|
|
+ // yield return child;
|
|
|
+ //}
|
|
|
+ //else
|
|
|
+ for (var i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
|
|
|
+ {
|
|
|
+ var child = VisualTreeHelper.GetChild(depObj, i);
|
|
|
+ if (child is null)
|
|
|
+ continue;
|
|
|
|
|
|
- #region Menu Utils
|
|
|
+ if (child is T t)
|
|
|
+ yield return t;
|
|
|
|
|
|
- private static void ItemsControlInsert(ItemsControl menu, FrameworkElement item, int index)
|
|
|
- {
|
|
|
- if (index != -1)
|
|
|
- {
|
|
|
- menu.Items.Insert(index, item);
|
|
|
+ foreach (var childOfChild in FindVisualChildren<T>(child))
|
|
|
+ yield return childOfChild;
|
|
|
}
|
|
|
- else
|
|
|
- {
|
|
|
- menu.Items.Add(item);
|
|
|
- }
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- private static MenuItem DoAddMenuItem(ItemsControl menu, string caption, Bitmap? image, bool enabled, int index = -1)
|
|
|
- {
|
|
|
- var item = new MenuItem { Header = caption, IsEnabled = enabled };
|
|
|
- if (image != null)
|
|
|
- item.Icon = new Image() { Source = enabled ? image.AsBitmapImage(24, 24) : image.AsGrayScale().AsBitmapImage(24, 24) };
|
|
|
+ #region Grid Columns + Rows
|
|
|
|
|
|
- ItemsControlInsert(menu, item, index);
|
|
|
- return item;
|
|
|
- }
|
|
|
+ public static ColumnDefinition AddColumn(this Grid grid, GridUnitType type, double value = 1)
|
|
|
+ {
|
|
|
+ var colDef = new ColumnDefinition { Width = new GridLength(value, type) };
|
|
|
+ grid.ColumnDefinitions.Add(colDef);
|
|
|
+ return colDef;
|
|
|
+ }
|
|
|
+ public static ColumnDefinition AddColumn(this Grid grid, double value)
|
|
|
+ {
|
|
|
+ var colDef = new ColumnDefinition { Width = new GridLength(value) };
|
|
|
+ grid.ColumnDefinitions.Add(colDef);
|
|
|
+ return colDef;
|
|
|
+ }
|
|
|
|
|
|
- private static MenuItem DoAddMenuItem(ItemsControl menu, string caption, Bitmap? image, Action? click, bool enabled, int index = -1)
|
|
|
- {
|
|
|
- var item = DoAddMenuItem(menu, caption, image, enabled, index);
|
|
|
+ public static RowDefinition AddRow(this Grid grid, GridUnitType type, double value = 1)
|
|
|
+ {
|
|
|
+ var rowDef = new RowDefinition { Height = new GridLength(value, type) };
|
|
|
+ grid.RowDefinitions.Add(rowDef);
|
|
|
+ return rowDef;
|
|
|
+ }
|
|
|
+ public static RowDefinition AddRow(this Grid grid, double value)
|
|
|
+ {
|
|
|
+ var rowDef = new RowDefinition { Height = new GridLength(value) };
|
|
|
+ grid.RowDefinitions.Add(rowDef);
|
|
|
+ return rowDef;
|
|
|
+ }
|
|
|
|
|
|
- if (click != null)
|
|
|
- {
|
|
|
- item.Click += (o, e) =>
|
|
|
- {
|
|
|
- click();
|
|
|
- };
|
|
|
- }
|
|
|
+ #endregion
|
|
|
|
|
|
- return item;
|
|
|
+ #region Menu Utils
|
|
|
+
|
|
|
+ private static void ItemsControlInsert(ItemsControl menu, FrameworkElement item, int index)
|
|
|
+ {
|
|
|
+ if (index != -1)
|
|
|
+ {
|
|
|
+ menu.Items.Insert(index, item);
|
|
|
}
|
|
|
- private static MenuItem DoAddMenuItem<T>(ItemsControl menu, string caption, Bitmap? image, T tag, Action<T> click, bool enabled, int index = -1)
|
|
|
+ else
|
|
|
{
|
|
|
- var item = DoAddMenuItem(menu, caption, image, enabled, index);
|
|
|
+ menu.Items.Add(item);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- item.Tag = tag;
|
|
|
- item.Click += (o, e) =>
|
|
|
- {
|
|
|
- click((T)(o as MenuItem)!.Tag);
|
|
|
- };
|
|
|
+ private static MenuItem DoAddMenuItem(ItemsControl menu, string caption, Bitmap? image, bool enabled, int index = -1)
|
|
|
+ {
|
|
|
+ var item = new MenuItem { Header = caption, IsEnabled = enabled };
|
|
|
+ if (image != null)
|
|
|
+ item.Icon = new Image() { Source = enabled ? image.AsBitmapImage(24, 24) : image.AsGrayScale().AsBitmapImage(24, 24) };
|
|
|
|
|
|
- return item;
|
|
|
- }
|
|
|
+ ItemsControlInsert(menu, item, index);
|
|
|
+ return item;
|
|
|
+ }
|
|
|
|
|
|
- public delegate void CheckToggleAction(bool isChecked);
|
|
|
- public delegate void CheckToggleAction<T>(T tag, bool isChecked);
|
|
|
+ private static MenuItem DoAddMenuItem(ItemsControl menu, string caption, Bitmap? image, Action? click, bool enabled, int index = -1)
|
|
|
+ {
|
|
|
+ var item = DoAddMenuItem(menu, caption, image, enabled, index);
|
|
|
|
|
|
- private static MenuItem DoAddCheckItem(ItemsControl menu, string caption, CheckToggleAction click, bool isChecked, bool enabled, int index = -1)
|
|
|
+ if (click != null)
|
|
|
{
|
|
|
- var item = new MenuItem { Header = caption, IsEnabled = enabled, IsCheckable = true, IsChecked = isChecked };
|
|
|
-
|
|
|
item.Click += (o, e) =>
|
|
|
{
|
|
|
- click(item.IsChecked);
|
|
|
+ click();
|
|
|
};
|
|
|
-
|
|
|
- ItemsControlInsert(menu, item, index);
|
|
|
- return item;
|
|
|
}
|
|
|
|
|
|
+ return item;
|
|
|
+ }
|
|
|
+ private static MenuItem DoAddMenuItem<T>(ItemsControl menu, string caption, Bitmap? image, T tag, Action<T> click, bool enabled, int index = -1)
|
|
|
+ {
|
|
|
+ var item = DoAddMenuItem(menu, caption, image, enabled, index);
|
|
|
|
|
|
- private static MenuItem DoAddCheckItem<T>(ItemsControl menu, string caption, T tag, CheckToggleAction<T> click, bool isChecked, bool enabled, int index = -1)
|
|
|
+ item.Tag = tag;
|
|
|
+ item.Click += (o, e) =>
|
|
|
{
|
|
|
- var item = new MenuItem { Header = caption, IsEnabled = enabled, IsCheckable = true, IsChecked = isChecked };
|
|
|
+ click((T)(o as MenuItem)!.Tag);
|
|
|
+ };
|
|
|
|
|
|
- item.Tag = tag;
|
|
|
- item.Click += (o, e) =>
|
|
|
- {
|
|
|
- click((T)(o as MenuItem)!.Tag, item.IsChecked);
|
|
|
- };
|
|
|
+ return item;
|
|
|
+ }
|
|
|
|
|
|
- ItemsControlInsert(menu, item, index);
|
|
|
- return item;
|
|
|
- }
|
|
|
+ public delegate void CheckToggleAction(bool isChecked);
|
|
|
+ public delegate void CheckToggleAction<T>(T tag, bool isChecked);
|
|
|
+
|
|
|
+ private static MenuItem DoAddCheckItem(ItemsControl menu, string caption, CheckToggleAction click, bool isChecked, bool enabled, int index = -1)
|
|
|
+ {
|
|
|
+ var item = new MenuItem { Header = caption, IsEnabled = enabled, IsCheckable = true, IsChecked = isChecked };
|
|
|
|
|
|
- private static Separator DoAddSeparator(ItemsControl menu, int index)
|
|
|
+ item.Click += (o, e) =>
|
|
|
{
|
|
|
- var separator = new Separator();
|
|
|
+ click(item.IsChecked);
|
|
|
+ };
|
|
|
|
|
|
- ItemsControlInsert(menu, separator, index);
|
|
|
+ ItemsControlInsert(menu, item, index);
|
|
|
+ return item;
|
|
|
+ }
|
|
|
|
|
|
- return separator;
|
|
|
- }
|
|
|
- private static Separator? DoAddSeparatorIfNeeded(ItemsControl menu, int index)
|
|
|
+
|
|
|
+ private static MenuItem DoAddCheckItem<T>(ItemsControl menu, string caption, T tag, CheckToggleAction<T> click, bool isChecked, bool enabled, int index = -1)
|
|
|
+ {
|
|
|
+ var item = new MenuItem { Header = caption, IsEnabled = enabled, IsCheckable = true, IsChecked = isChecked };
|
|
|
+
|
|
|
+ item.Tag = tag;
|
|
|
+ item.Click += (o, e) =>
|
|
|
{
|
|
|
- if (menu.Items.Count == 0) return null;
|
|
|
+ click((T)(o as MenuItem)!.Tag, item.IsChecked);
|
|
|
+ };
|
|
|
|
|
|
- var lastIndex = index != -1 ? index - 1 : menu.Items.Count - 1;
|
|
|
- if (lastIndex < 0 || lastIndex >= menu.Items.Count) return null;
|
|
|
+ ItemsControlInsert(menu, item, index);
|
|
|
+ return item;
|
|
|
+ }
|
|
|
|
|
|
- var last = menu.Items[lastIndex];
|
|
|
- if (last is Separator) return null;
|
|
|
+ private static Separator DoAddSeparator(ItemsControl menu, int index)
|
|
|
+ {
|
|
|
+ var separator = new Separator();
|
|
|
|
|
|
- var separator = new Separator();
|
|
|
+ ItemsControlInsert(menu, separator, index);
|
|
|
|
|
|
- ItemsControlInsert(menu, separator, index);
|
|
|
+ return separator;
|
|
|
+ }
|
|
|
+ private static Separator? DoAddSeparatorIfNeeded(ItemsControl menu, int index)
|
|
|
+ {
|
|
|
+ if (menu.Items.Count == 0) return null;
|
|
|
|
|
|
- return separator;
|
|
|
- }
|
|
|
+ var lastIndex = index != -1 ? index - 1 : menu.Items.Count - 1;
|
|
|
+ if (lastIndex < 0 || lastIndex >= menu.Items.Count) return null;
|
|
|
|
|
|
- private static void DoRemoveUnnecessarySeparators(ItemsControl menu)
|
|
|
+ var last = menu.Items[lastIndex];
|
|
|
+ if (last is Separator) return null;
|
|
|
+
|
|
|
+ var separator = new Separator();
|
|
|
+
|
|
|
+ ItemsControlInsert(menu, separator, index);
|
|
|
+
|
|
|
+ return separator;
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void DoRemoveUnnecessarySeparators(ItemsControl menu)
|
|
|
+ {
|
|
|
+ while(menu.Items.Count > 0 && menu.Items[0] is Separator)
|
|
|
{
|
|
|
- while(menu.Items.Count > 0 && menu.Items[0] is Separator)
|
|
|
- {
|
|
|
- menu.Items.RemoveAt(0);
|
|
|
- }
|
|
|
- while(menu.Items.Count > 0 && menu.Items[^1] is Separator)
|
|
|
- {
|
|
|
- menu.Items.RemoveAt(menu.Items.Count - 1);
|
|
|
- }
|
|
|
+ menu.Items.RemoveAt(0);
|
|
|
+ }
|
|
|
+ while(menu.Items.Count > 0 && menu.Items[^1] is Separator)
|
|
|
+ {
|
|
|
+ menu.Items.RemoveAt(menu.Items.Count - 1);
|
|
|
}
|
|
|
-
|
|
|
- public static Separator AddSeparator(this ContextMenu menu, int index = -1) => DoAddSeparator(menu, index);
|
|
|
- public static Separator AddSeparator(this MenuItem menu, int index = -1) => DoAddSeparator(menu, index);
|
|
|
- public static Separator? AddSeparatorIfNeeded(this ContextMenu menu, int index = -1) => DoAddSeparatorIfNeeded(menu, index);
|
|
|
- public static Separator? AddSeparatorIfNeeded(this MenuItem menu, int index = -1) => DoAddSeparatorIfNeeded(menu, index);
|
|
|
- public static void RemoveUnnecessarySeparators(this ContextMenu menu) => DoRemoveUnnecessarySeparators(menu);
|
|
|
- public static void RemoveUnnecessarySeparators(this MenuItem menu) => DoRemoveUnnecessarySeparators(menu);
|
|
|
-
|
|
|
- public static MenuItem AddItem(this ContextMenu menu, string caption, Bitmap? image, Action? click, bool enabled = true, int index = -1)
|
|
|
- => DoAddMenuItem(menu, caption, image, click, enabled, index);
|
|
|
- public static MenuItem AddItem(this MenuItem menu, string caption, Bitmap? image, Action? click, bool enabled = true, int index = -1)
|
|
|
- => DoAddMenuItem(menu, caption, image, click, enabled, index);
|
|
|
- public static MenuItem AddItem<T>(this ContextMenu menu, string caption, Bitmap? image, T tag, Action<T> click, bool enabled = true, int index = -1)
|
|
|
- => DoAddMenuItem(menu, caption, image, tag, click, enabled, index);
|
|
|
- public static MenuItem AddItem<T>(this MenuItem menu, string caption, Bitmap? image, T tag, Action<T> click, bool enabled = true, int index = -1)
|
|
|
- => DoAddMenuItem(menu, caption, image, tag, click, enabled, index);
|
|
|
- public static MenuItem AddCheckItem(this ContextMenu menu, string caption, CheckToggleAction click, bool isChecked = false, bool enabled = true, int index = -1)
|
|
|
- => DoAddCheckItem(menu, caption, click, isChecked, enabled, index);
|
|
|
- public static MenuItem AddCheckItem<T>(this ContextMenu menu, string caption, T tag, CheckToggleAction<T> click, bool isChecked = false, bool enabled = true, int index = -1)
|
|
|
- => DoAddCheckItem(menu, caption, tag, click, isChecked, enabled, index);
|
|
|
-
|
|
|
- #endregion
|
|
|
}
|
|
|
+
|
|
|
+ public static Separator AddSeparator(this ContextMenu menu, int index = -1) => DoAddSeparator(menu, index);
|
|
|
+ public static Separator AddSeparator(this MenuItem menu, int index = -1) => DoAddSeparator(menu, index);
|
|
|
+ public static Separator? AddSeparatorIfNeeded(this ContextMenu menu, int index = -1) => DoAddSeparatorIfNeeded(menu, index);
|
|
|
+ public static Separator? AddSeparatorIfNeeded(this MenuItem menu, int index = -1) => DoAddSeparatorIfNeeded(menu, index);
|
|
|
+ public static void RemoveUnnecessarySeparators(this ContextMenu menu) => DoRemoveUnnecessarySeparators(menu);
|
|
|
+ public static void RemoveUnnecessarySeparators(this MenuItem menu) => DoRemoveUnnecessarySeparators(menu);
|
|
|
+
|
|
|
+ public static MenuItem AddItem(this ContextMenu menu, string caption, Bitmap? image, Action? click, bool enabled = true, int index = -1)
|
|
|
+ => DoAddMenuItem(menu, caption, image, click, enabled, index);
|
|
|
+ public static MenuItem AddItem(this MenuItem menu, string caption, Bitmap? image, Action? click, bool enabled = true, int index = -1)
|
|
|
+ => DoAddMenuItem(menu, caption, image, click, enabled, index);
|
|
|
+ public static MenuItem AddItem<T>(this ContextMenu menu, string caption, Bitmap? image, T tag, Action<T> click, bool enabled = true, int index = -1)
|
|
|
+ => DoAddMenuItem(menu, caption, image, tag, click, enabled, index);
|
|
|
+ public static MenuItem AddItem<T>(this MenuItem menu, string caption, Bitmap? image, T tag, Action<T> click, bool enabled = true, int index = -1)
|
|
|
+ => DoAddMenuItem(menu, caption, image, tag, click, enabled, index);
|
|
|
+ public static MenuItem AddCheckItem(this ContextMenu menu, string caption, CheckToggleAction click, bool isChecked = false, bool enabled = true, int index = -1)
|
|
|
+ => DoAddCheckItem(menu, caption, click, isChecked, enabled, index);
|
|
|
+ public static MenuItem AddCheckItem<T>(this ContextMenu menu, string caption, T tag, CheckToggleAction<T> click, bool isChecked = false, bool enabled = true, int index = -1)
|
|
|
+ => DoAddCheckItem(menu, caption, tag, click, isChecked, enabled, index);
|
|
|
+
|
|
|
+ #endregion
|
|
|
}
|