Many new plays

This commit is contained in:
2020-02-18 14:57:55 +01:00
parent ef501d30ae
commit 2467cad2a1
19 changed files with 2334 additions and 24 deletions

View File

@@ -2,6 +2,7 @@
x:Class="ModernWpfPlayground.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:LsBricks.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ModernWpfPlayground"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
@@ -12,7 +13,12 @@
Height="600"
ui:TitleBar.ExtendViewIntoTitleBar="True"
ui:WindowHelper.UseModernWindowStyle="True"
TextOptions.TextFormattingMode="Display"
UseLayoutRounding="True"
mc:Ignorable="d">
<Window.DataContext>
<local:WindowViewModel />
</Window.DataContext>
<Window.Resources>
<local:PixelsToGridLengthConverter x:Key="PixelsToGridLength" />
</Window.Resources>
@@ -166,26 +172,51 @@
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<StackPanel
<ui:SimpleStackPanel
Grid.Column="0"
Margin="10"
Orientation="Vertical">
<StackPanel.Resources>
<Style BasedOn="{StaticResource {x:Type Button}}" TargetType="Button">
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Margin" Value="5" />
</Style>
</StackPanel.Resources>
Margin="5"
Orientation="Vertical"
Spacing="5">
<Button HorizontalAlignment="Stretch" Content="New" />
<Button HorizontalAlignment="Stretch" Content="Open" />
<Separator />
<Button HorizontalAlignment="Stretch" Content="Open catalog" />
</StackPanel>
</ui:SimpleStackPanel>
</Grid>
</TabItem>
<TabItem Header="General" />
<TabItem Header="General">
<ui:SimpleStackPanel Margin="5" Spacing="10">
<controls:PropertyPresenter2
Command="{Binding ShowDialogCommand}"
Label="Hello"
Symbol="x³"
Value="World" />
<controls:PropertyPresenter2
Label="Hallo"
Symbol="x²"
Value="{Binding ValidationTest}" />
<controls:PropertyPresenter2 Label="Hello" Value="{Binding BooleanValue}" />
<controls:PropertyPresenter2 Label="Hello">
<Slider
AutoToolTipPlacement="TopLeft"
Interval="1"
IsSnapToTickEnabled="True"
Maximum="150"
Minimum="50"
TickFrequency="10"
TickPlacement="BottomRight"
Value="{Binding SliderTest}" />
</controls:PropertyPresenter2>
<ui:ProgressRing
Width="{Binding SliderTest}"
Height="{Binding SliderTest}"
IsActive="{Binding BooleanValue}"
Visibility="{Binding VisibilityEnumTest}" />
<controls:PropertyPresenter2 Label="Visi" Value="{Binding VisibilityEnumTest}" />
</ui:SimpleStackPanel>
</TabItem>
</TabControl>
</Grid>
</DockPanel>
</Window>
</Window>