This commit is contained in:
TheXamlGuy
2024-01-06 14:34:25 +00:00
parent 53537aa4c7
commit e1c7846e45
73 changed files with 251 additions and 198 deletions
+1 -1
View File
@@ -10,4 +10,4 @@
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
</UserControl>
</UserControl>
+2 -2
View File
@@ -3,7 +3,7 @@ using Microsoft.UI.Xaml.Input;
namespace Hyperbar.Windows;
public sealed partial class CommandView :
public sealed partial class CommandView :
UserControl
{
public CommandView() => InitializeComponent();
@@ -12,4 +12,4 @@ public sealed partial class CommandView :
{
base.OnKeyDown(e);
}
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
namespace Hyperbar.Windows;
public partial class CommandViewModel :
public partial class CommandViewModel :
ObservableCollectionViewModel<IWidgetViewModel>,
ITemplatedViewModel
{
@@ -13,4 +13,4 @@ public partial class CommandViewModel :
}
public ITemplateFactory TemplateFactory { get; }
}
}
+1 -1
View File
@@ -17,4 +17,4 @@
Height="{StaticResource ButtonHeight}"
Command="{Binding Click}"
Content="{Binding Icon}" />
</UserControl>
</UserControl>
@@ -2,8 +2,8 @@ using Microsoft.UI.Xaml.Controls;
namespace Hyperbar.Windows;
public sealed partial class WidgetButtonView :
public sealed partial class WidgetButtonView :
UserControl
{
public WidgetButtonView() => InitializeComponent();
}
}
+1 -1
View File
@@ -10,4 +10,4 @@
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
</UserControl>
</UserControl>
+1 -1
View File
@@ -7,4 +7,4 @@ public sealed partial class WidgetView :
IWidgetView
{
public WidgetView() => InitializeComponent();
}
}