Skip to content

Instantly share code, notes, and snippets.

@dz0
Created October 7, 2016 18:28
Show Gist options
  • Select an option

  • Save dz0/05863b418733a548aa05bd69a84911a2 to your computer and use it in GitHub Desktop.

Select an option

Save dz0/05863b418733a548aa05bd69a84911a2 to your computer and use it in GitHub Desktop.
<Window x:Class="WpfApplication3_Test_Darbu_sarasas.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApplication3_Test_Darbu_sarasas"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<ListBox x:Name="listBox" HorizontalAlignment="Left" Height="152" Margin="58,139,0,0" VerticalAlignment="Top" Width="152" RenderTransformOrigin="0.5,0.5">
<ListBox.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform AngleY="0.562"/>
<RotateTransform/>
<TranslateTransform Y="0.49"/>
</TransformGroup>
</ListBox.RenderTransform>
</ListBox>
<ListBox x:Name="listBox2" HorizontalAlignment="Left" Height="152" Margin="313,139,0,0" VerticalAlignment="Top" Width="100"/>
<CheckBox x:Name="checkBox" Content="CheckBox (IsChecked?)" HorizontalAlignment="Left" Margin="209,68,0,0" VerticalAlignment="Top" Checked="checkBox_Checked"/>
<Button x:Name="button" Content="Update" HorizontalAlignment="Left" Margin="373,79,0,0" VerticalAlignment="Top" Width="75" Click="button_Click"/>
<TextBox x:Name="textBox" HorizontalAlignment="Left" Height="23" Margin="58,68,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="120"/>
<Button x:Name="button_Copy" Content="Add" HorizontalAlignment="Left" Margin="373,52,0,0" VerticalAlignment="Top" Width="75" Click="button_Copy_Click"/>
<Label x:Name="label" Content="Label: laukia X darbai" HorizontalAlignment="Left" Margin="173,10,0,0" VerticalAlignment="Top"/>
</Grid>
</Window>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment