功能更新
This commit is contained in:
519
MelskinTest/NeumorphismWindow.xaml
Normal file
519
MelskinTest/NeumorphismWindow.xaml
Normal file
@@ -0,0 +1,519 @@
|
||||
<ms:MelWindow
|
||||
Height="450"
|
||||
Title="NeumorphismWindow"
|
||||
Width="800"
|
||||
d:DataContext="{d:DesignInstance Type=neoUiTest:MainWindow}"
|
||||
d:Height="Auto"
|
||||
mc:Ignorable="d"
|
||||
x:Class="VibeWPFTest.NeumorphismWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:dataModel="clr-namespace:VibeWPFTest.DataModel"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:ms="https://github.com/ShrlAlgo/Melskin"
|
||||
xmlns:neoUiTest="clr-namespace:VibeWPFTest"
|
||||
xmlns:sys="clr-namespace:System;assembly=mscorlib"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<ms:MelWindow.Resources>
|
||||
<ResourceDictionary>
|
||||
<ContextMenu x:Key="ContextMenuDemo">
|
||||
<MenuItem Header="菜单01" />
|
||||
<MenuItem Header="菜单02" />
|
||||
<Separator />
|
||||
<MenuItem Header="菜单03">
|
||||
<MenuItem Header="菜单A1" />
|
||||
<MenuItem Header="菜单A2" />
|
||||
<Separator />
|
||||
<MenuItem Header="菜单A3" />
|
||||
</MenuItem>
|
||||
</ContextMenu>
|
||||
<neoUiTest:MainViewModel x:Key="MainViewModel" />
|
||||
<!-- <ResourceDictionary.MergedDictionaries> -->
|
||||
<!-- <enu:ThemesDictionary Theme="Dark" /> -->
|
||||
<!-- <enu:ControlsDictionary /> -->
|
||||
<!-- </ResourceDictionary.MergedDictionaries> -->
|
||||
<dataModel:DataGridDemo x:Key="Dgd" />
|
||||
|
||||
|
||||
</ResourceDictionary>
|
||||
|
||||
</ms:MelWindow.Resources>
|
||||
<Grid>
|
||||
<!--<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto" />
|
||||
<ColumnDefinition Width="*" />
|
||||
</Grid.ColumnDefinitions>-->
|
||||
<ms:Anchor>
|
||||
<ms:StackPanel Spacing="5">
|
||||
|
||||
<GroupBox Header="Decoration" ms:ControlAssist.AnchorHeaderText="装饰器 Decoration">
|
||||
<StackPanel>
|
||||
<ms:FlexibleRowPanel>
|
||||
<ms:SlotBorder
|
||||
Content="凹槽"
|
||||
CornerRadius="16"
|
||||
FontSize="24"
|
||||
Foreground="{DynamicResource PrimaryGradientBrush}"
|
||||
Height="100"
|
||||
HorizontalContentAlignment="Center"
|
||||
Margin="5"
|
||||
VerticalContentAlignment="Center" />
|
||||
<ms:EmbossBorder
|
||||
Content="浮雕"
|
||||
ContextMenu="{StaticResource ContextMenuDemo}"
|
||||
CornerRadius="16"
|
||||
FontSize="24"
|
||||
Foreground="{DynamicResource PrimaryGradientBrush}"
|
||||
HorizontalContentAlignment="Center"
|
||||
Margin="5"
|
||||
ToolTip="右键"
|
||||
VerticalContentAlignment="Center" />
|
||||
<ms:Card
|
||||
Content="卡片"
|
||||
CornerRadius="16"
|
||||
FontSize="24"
|
||||
Foreground="{DynamicResource PrimaryGradientBrush}"
|
||||
Margin="5" />
|
||||
</ms:FlexibleRowPanel>
|
||||
|
||||
<ms:LightedSurface
|
||||
Content="在此处移动鼠标"
|
||||
CornerRadius="16"
|
||||
FontSize="24"
|
||||
Foreground="{DynamicResource PrimaryGradientBrush}"
|
||||
Height="100"
|
||||
Margin="5" />
|
||||
</StackPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="Buttons" ms:ControlAssist.AnchorHeaderText="按钮 Buttons">
|
||||
<WrapPanel>
|
||||
<Button
|
||||
Content="浮雕按钮"
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource EmbossButtonStyle}" />
|
||||
<Button
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource EmbossIconButtonStyle}" />
|
||||
<Button
|
||||
Content="浮动按钮"
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource FloatButtonStyle}" />
|
||||
<Button
|
||||
Content="光亮按钮"
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource LightedButtonStyle}" />
|
||||
</WrapPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="TextBox" ms:ControlAssist.AnchorHeaderText="文本框 TextBox">
|
||||
<StackPanel>
|
||||
<ms:FlexibleRowPanel>
|
||||
<TextBox Style="{StaticResource SlotTextBoxStyle}" />
|
||||
<PasswordBox Style="{StaticResource SlotPasswordBoxStyle}" ms:InputAssist.Password="453" />
|
||||
<PasswordBox
|
||||
Style="{StaticResource SlotPasswordBoxStyle}"
|
||||
ms:InputAssist.Clearable="True"
|
||||
ms:InputAssist.IsPasswordVisible="True"
|
||||
ms:InputAssist.Password="453" />
|
||||
</ms:FlexibleRowPanel>
|
||||
<ms:FlexibleRowPanel>
|
||||
<DatePicker Style="{StaticResource SlotDatePicker}" />
|
||||
<ms:NumberBox Style="{StaticResource SlotNumberBoxStyle}" />
|
||||
<ms:NumericBox Style="{StaticResource SlotTextBoxStyle}" />
|
||||
</ms:FlexibleRowPanel>
|
||||
<ms:ChooseBox Style="{StaticResource SlotChooseBoxStyle}" />
|
||||
|
||||
</StackPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="Avatar Tag" ms:ControlAssist.AnchorHeaderText="Component">
|
||||
<ms:FlexibleRowPanel>
|
||||
<ms:Avatar Style="{StaticResource SlotAvatarStyle}" />
|
||||
<ms:Tag Content="Tag" Style="{StaticResource EmbossTag}" />
|
||||
<ms:Chip Content="Chip" Style="{StaticResource EmbossChipStyle}" />
|
||||
<ms:Chip
|
||||
Content="必应"
|
||||
Style="{StaticResource EmbossChipStyle}"
|
||||
Url="www.bing.com">
|
||||
<ms:Chip.Header>
|
||||
<ms:IconElement Symbol="Search" />
|
||||
</ms:Chip.Header>
|
||||
</ms:Chip>
|
||||
</ms:FlexibleRowPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="RadioButton" ms:ControlAssist.AnchorHeaderText="单选框 RadioButton">
|
||||
<ms:FlexibleRowPanel>
|
||||
<RadioButton
|
||||
Content="浮雕单选框"
|
||||
FontSize="16"
|
||||
IsChecked="True"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource EmbossRadioButtonStyle}" />
|
||||
<RadioButton
|
||||
Content="浮雕单选框"
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource EmbossRadioButtonStyle}" />
|
||||
</ms:FlexibleRowPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="Toggle" ms:ControlAssist.AnchorHeaderText="切换 Toggle">
|
||||
<StackPanel>
|
||||
<ms:FlexibleRowPanel>
|
||||
<ToggleButton
|
||||
Content="浮雕切换"
|
||||
FontSize="16"
|
||||
IsChecked="True"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource EmbossToggleButtonStyle}" />
|
||||
<ms:ToggleSwitch
|
||||
Content="浮雕单选框"
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource FloatToggleSwitchStyle}" />
|
||||
</ms:FlexibleRowPanel>
|
||||
<ms:FlexibleRowPanel>
|
||||
<ms:ToggleSwitch
|
||||
IsChecked="True"
|
||||
Style="{StaticResource SlotToggleSwitch}"
|
||||
ms:ControlAssist.OffContent="{ms:Icon SymbolValue=ToggleOff}"
|
||||
ms:ControlAssist.OnContent="{ms:Icon ToggleOn}"
|
||||
ms:ControlAssist.ShowText="True" />
|
||||
<ms:ToggleSwitch
|
||||
IsChecked="True"
|
||||
IsEnabled="False"
|
||||
Style="{StaticResource SlotToggleSwitch}"
|
||||
ms:ControlAssist.OffContent="{ms:Icon SymbolValue=ToggleOff}"
|
||||
ms:ControlAssist.OnContent="{ms:Icon ToggleOn}" />
|
||||
<ms:ToggleSwitch
|
||||
IsChecked="False"
|
||||
Style="{StaticResource SlotToggleSwitch}"
|
||||
ms:ControlAssist.ShowText="False" />
|
||||
<ms:ToggleSwitch
|
||||
IsChecked="False"
|
||||
IsEnabled="False"
|
||||
Style="{StaticResource SlotToggleSwitch}" />
|
||||
</ms:FlexibleRowPanel>
|
||||
<ms:FlexibleRowPanel>
|
||||
<ms:ToggleSwitch IsChecked="False" Style="{StaticResource FloatToggleSwitchStyle}" />
|
||||
<ms:ToggleSwitch
|
||||
IsChecked="False"
|
||||
IsEnabled="False"
|
||||
Style="{StaticResource FloatToggleSwitchStyle}" />
|
||||
<ms:ToggleSwitch IsChecked="True" Style="{StaticResource FloatToggleSwitchStyle}" />
|
||||
|
||||
<ms:ToggleSwitch
|
||||
IsChecked="True"
|
||||
IsEnabled="False"
|
||||
Style="{StaticResource FloatToggleSwitchStyle}" />
|
||||
</ms:FlexibleRowPanel>
|
||||
</StackPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="CheckBox" ms:ControlAssist.AnchorHeaderText="复选框 CheckBox">
|
||||
<StackPanel>
|
||||
<ms:FlexibleRowPanel>
|
||||
<CheckBox
|
||||
Content="浮雕单选框"
|
||||
FontSize="16"
|
||||
IsChecked="True"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource EmbossCheckBoxStyle}" />
|
||||
<CheckBox
|
||||
Content="浮雕单选框"
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource EmbossCheckBoxStyle}" />
|
||||
</ms:FlexibleRowPanel>
|
||||
<ms:FlexibleRowPanel>
|
||||
<CheckBox
|
||||
Content="浮雕单选框"
|
||||
FontSize="16"
|
||||
IsChecked="True"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource SlotCheckBoxStyle}" />
|
||||
<CheckBox
|
||||
Content="浮雕单选框"
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource SlotCheckBoxStyle}" />
|
||||
</ms:FlexibleRowPanel>
|
||||
</StackPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="ComboBox" ms:ControlAssist.AnchorHeaderText="组合框 ComboBox">
|
||||
<ms:FlexibleRowPanel>
|
||||
<ComboBox
|
||||
FontSize="16"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
Style="{StaticResource FloatComboBoxStyle}" />
|
||||
<ms:Cascader
|
||||
DisplayMemberPath="Name"
|
||||
ItemsSource="{Binding StaffList, Mode=TwoWay}"
|
||||
SelectedValue="{Binding SelectedItem, Mode=TwoWay}"
|
||||
SubmenuMemberPath="Children" />
|
||||
</ms:FlexibleRowPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="Pagination" ms:ControlAssist.AnchorHeaderText="分页导航 Pagination">
|
||||
<ms:FlexibleRowPanel>
|
||||
<ms:Pagination
|
||||
CurrentPage="3"
|
||||
HorizontalAlignment="Center"
|
||||
Margin="0,15,0,0"
|
||||
PageSize="20"
|
||||
ShowPageInput="True"
|
||||
Style="{StaticResource EmbossPaginationStyle}"
|
||||
TotalItems="102" />
|
||||
</ms:FlexibleRowPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="TabControl" ms:ControlAssist.AnchorHeaderText="标签导航 TabControl">
|
||||
<ms:FlexibleRowPanel>
|
||||
<TabControl Style="{StaticResource NavigationTabControlStyle}">
|
||||
<TabItem Header="选项卡 1">
|
||||
<Grid Margin="4">
|
||||
<!-- <Separator /> -->
|
||||
<DataGrid
|
||||
DataContext="{StaticResource Dgd}"
|
||||
ItemsSource="{Binding DataCollection}"
|
||||
Margin="4"
|
||||
SelectedItem="{Binding SelectedDataGridItem}" />
|
||||
|
||||
</Grid>
|
||||
</TabItem>
|
||||
<TabItem Header="选项卡 2" />
|
||||
<TabItem Header="禁用选项卡" IsEnabled="False" />
|
||||
</TabControl>
|
||||
</ms:FlexibleRowPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="Slider Progress" ms:ControlAssist.AnchorHeaderText="滑动/滚动条 Slider">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto" />
|
||||
<ColumnDefinition Width="*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<StackPanel>
|
||||
<CheckBox Content="加载中" x:Name="IsSpining" />
|
||||
<StackPanel Height="100" Orientation="Horizontal">
|
||||
<Slider
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Orientation="Vertical"
|
||||
Value="25"
|
||||
x:Name="ProgressVerticalSlider" />
|
||||
<Slider
|
||||
IsEnabled="False"
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Orientation="Vertical"
|
||||
Value="25"
|
||||
x:Name="ProgressVerticalSlider1" />
|
||||
<ProgressBar
|
||||
Height="100"
|
||||
IsIndeterminate="{Binding ElementName=ProgressCheckbox, Path=IsChecked}"
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Orientation="Vertical"
|
||||
Style="{StaticResource SlotProgressBarStyle}"
|
||||
Value="{Binding ElementName=ProgressVerticalSlider, Path=Value}" />
|
||||
<ProgressBar
|
||||
Height="100"
|
||||
IsEnabled="False"
|
||||
IsIndeterminate="{Binding ElementName=ProgressCheckbox, Path=IsChecked}"
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Orientation="Vertical"
|
||||
Style="{StaticResource SlotProgressBarStyle}"
|
||||
Value="{Binding ElementName=ProgressVerticalSlider, Path=Value}" />
|
||||
<ProgressBar
|
||||
Height="100"
|
||||
IsEnabled="False"
|
||||
IsIndeterminate="True"
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Orientation="Vertical"
|
||||
Style="{StaticResource SlotProgressBarStyle}"
|
||||
Value="100" />
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
|
||||
<Grid Grid.Column="1" Panel.ZIndex="10">
|
||||
<ms:Spin Spinning="{Binding ElementName=IsSpining, Path=IsChecked}" Tip="加载中...">
|
||||
<StackPanel x:Name="SpinPanel">
|
||||
<CheckBox Content="进度待定" x:Name="ProgressCheckbox" />
|
||||
<Slider
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Value="25"
|
||||
x:Name="ProgressSlider" />
|
||||
<Slider
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
TickFrequency="10"
|
||||
TickPlacement="TopLeft"
|
||||
x:Name="ProgressTickSlider" />
|
||||
<Slider
|
||||
IsEnabled="False"
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Value="25"
|
||||
x:Name="ProgressSlider1" />
|
||||
<ProgressBar
|
||||
IsIndeterminate="{Binding ElementName=ProgressCheckbox, Path=IsChecked}"
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Style="{StaticResource SlotProgressBarStyle}"
|
||||
Value="{Binding ElementName=ProgressSlider, Path=Value}" />
|
||||
<ProgressBar
|
||||
IsEnabled="False"
|
||||
IsIndeterminate="{Binding ElementName=ProgressCheckbox, Path=IsChecked}"
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Style="{StaticResource SlotProgressBarStyle}"
|
||||
Value="{Binding ElementName=ProgressSlider, Path=Value}" />
|
||||
</StackPanel>
|
||||
</ms:Spin>
|
||||
<ms:Spin
|
||||
HorizontalAlignment="Left"
|
||||
Spinning="{Binding ElementName=IsSpining, Path=IsChecked}"
|
||||
Tip="加载中...">
|
||||
<ms:Spin.Indicator>
|
||||
<ms:IconElement Symbol="Downloading" />
|
||||
</ms:Spin.Indicator>
|
||||
</ms:Spin>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</GroupBox>
|
||||
<GroupBox Header="ListBox" ms:ControlAssist.AnchorHeaderText="列表框 ListBox">
|
||||
<ms:StackPanel Orientation="Horizontal" Spacing="3">
|
||||
<ms:StackPanel Spacing="10">
|
||||
<ListBox
|
||||
HorizontalAlignment="Center"
|
||||
SelectedIndex="1"
|
||||
Style="{StaticResource SlideTabGroupListBoxStyle}"
|
||||
VerticalAlignment="Center"
|
||||
ms:BehaviorAssist.EnableSlideAnimation="True">
|
||||
<!-- 这里是你的数据项 -->
|
||||
<sys:String>Tab 1</sys:String>
|
||||
<sys:String>Tab 2</sys:String>
|
||||
<sys:String>Tab 3</sys:String>
|
||||
<sys:String>Another Tab</sys:String>
|
||||
</ListBox>
|
||||
<ListBox
|
||||
HorizontalAlignment="Center"
|
||||
IsEnabled="False"
|
||||
SelectedIndex="1"
|
||||
Style="{StaticResource SlideTabGroupListBoxStyle}"
|
||||
VerticalAlignment="Center"
|
||||
ms:BehaviorAssist.EnableSlideAnimation="True">
|
||||
<!-- 这里是你的数据项 -->
|
||||
<sys:String>Tab 1</sys:String>
|
||||
<sys:String>Tab 2</sys:String>
|
||||
<sys:String>Tab 3</sys:String>
|
||||
<sys:String>Another Tab</sys:String>
|
||||
</ListBox>
|
||||
<ListBox
|
||||
HorizontalAlignment="Center"
|
||||
SelectedIndex="1"
|
||||
Style="{StaticResource EmbossChipListBoxStyle}"
|
||||
VerticalAlignment="Center"
|
||||
ms:BehaviorAssist.EnableSlideAnimation="True">
|
||||
<!-- 这里是你的数据项 -->
|
||||
<sys:String>Tab 1</sys:String>
|
||||
<sys:String>Tab 2</sys:String>
|
||||
<sys:String>Tab 3</sys:String>
|
||||
<sys:String>Another Tab</sys:String>
|
||||
</ListBox>
|
||||
</ms:StackPanel>
|
||||
<ms:StackPanel Orientation="Horizontal" Spacing="3">
|
||||
<ListBox
|
||||
HorizontalAlignment="Center"
|
||||
SelectedIndex="1"
|
||||
SelectionMode="Multiple"
|
||||
Style="{StaticResource SlotTabGroupListBoxStyle}"
|
||||
VerticalAlignment="Center"
|
||||
ms:ControlAssist.Orientation="Vertical">
|
||||
<ListBoxItem Content="Home" />
|
||||
<ListBoxItem Content="Away" />
|
||||
<ListBoxItem Content="Night" />
|
||||
</ListBox>
|
||||
<ListBox
|
||||
HorizontalAlignment="Center"
|
||||
IsEnabled="False"
|
||||
SelectedIndex="1"
|
||||
Style="{StaticResource SlotTabGroupListBoxStyle}"
|
||||
VerticalAlignment="Center"
|
||||
ms:ControlAssist.Orientation="Vertical">
|
||||
<ListBoxItem Content="Home" />
|
||||
<ListBoxItem Content="Away" />
|
||||
<ListBoxItem Content="Night" />
|
||||
</ListBox>
|
||||
<ListBox
|
||||
HorizontalAlignment="Center"
|
||||
SelectedIndex="0"
|
||||
SelectionMode="Multiple"
|
||||
Style="{StaticResource SlideTabGroupListBoxStyle}"
|
||||
VerticalAlignment="Center"
|
||||
ms:BehaviorAssist.EnableSlideAnimation="True"
|
||||
ms:ControlAssist.Orientation="Vertical">
|
||||
<!-- 这里是你的数据项 -->
|
||||
<sys:String>Tab 1</sys:String>
|
||||
<sys:String>Tab 2</sys:String>
|
||||
<sys:String>Tab 3</sys:String>
|
||||
</ListBox>
|
||||
</ms:StackPanel>
|
||||
</ms:StackPanel>
|
||||
</GroupBox>
|
||||
<GroupBox Header="Accordion" ms:ControlAssist.AnchorHeaderText="折叠 Accordion">
|
||||
<ms:Accordion
|
||||
BorderThickness="1"
|
||||
Style="{StaticResource EmbossAccordionStyle}"
|
||||
Width="200">
|
||||
<ms:AccordionItem Header="User Profile" IsExpanded="True">
|
||||
<StackPanel Margin="10">
|
||||
<TextBlock Text="Name: John Doe" />
|
||||
<TextBlock Text="Email: john.doe@example.com" />
|
||||
</StackPanel>
|
||||
</ms:AccordionItem>
|
||||
<ms:AccordionItem Header="User Profile">
|
||||
<StackPanel Margin="10">
|
||||
<TextBlock Text="Name: John Doe" />
|
||||
<TextBlock Text="Email: john.doe@example.com" />
|
||||
</StackPanel>
|
||||
</ms:AccordionItem>
|
||||
<ms:AccordionItem Header="User Profile">
|
||||
<StackPanel Margin="10">
|
||||
<TextBlock Text="Name: John Doe" />
|
||||
<TextBlock Text="Email: john.doe@example.com" />
|
||||
</StackPanel>
|
||||
</ms:AccordionItem>
|
||||
<ms:AccordionItem Header="Application Settings">
|
||||
<StackPanel>
|
||||
<CheckBox Content="Enable Dark Mode" />
|
||||
<CheckBox Content="Auto-save every 5 minutes" />
|
||||
</StackPanel>
|
||||
</ms:AccordionItem>
|
||||
<ms:AccordionItem Header="Help & Support">
|
||||
<TextBlock
|
||||
Margin="10"
|
||||
Text="For support, please visit our website."
|
||||
TextWrapping="Wrap" />
|
||||
</ms:AccordionItem>
|
||||
</ms:Accordion>
|
||||
</GroupBox>
|
||||
</ms:StackPanel>
|
||||
|
||||
</ms:Anchor>
|
||||
</Grid>
|
||||
</ms:MelWindow>
|
||||
Reference in New Issue
Block a user