123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <Window x:Class="Clicker_2._0.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:Clicker_2._0"
- mc:Ignorable="d"
- Title="MainWindow" Height="550" Width="700" WindowStyle="None" ResizeMode="NoResize">
- <Grid>
- <Grid.Background>
- <ImageBrush ImageSource="Images/ti10.jpg"/>
- </Grid.Background>
-
- <TabControl>
- <TabItem Header="Clicker">
- <Grid>
- <Grid.Background>
- <ImageBrush ImageSource="Images/ti10.jpg"/>
- </Grid.Background>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition Width="1.5*"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="2.5*"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock x:Name="poi" Grid.Column="0" Grid.Row="0" Text="Points: " HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" FontSize="20"/>
- <Button Grid.Column="1" Grid.Row="0" Margin="50 20 50 20" Style="{DynamicResource ButtonStyle}" Click="Button_Click">
- <Button.Background>
- <ImageBrush ImageSource="Images/gg.jpg"/>
- </Button.Background>
- </Button>
- <TextBlock x:Name="cli" Grid.Column="2" Grid.Row="0" Text="PointsPerClick: " HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Black" FontSize="20"/>
- <Border Grid.Column="1" Grid.Row="1" BorderBrush="White" BorderThickness="1">
- <Image x:Name="imgYatoro" Source="Images/YatoroWeak.jpg" Stretch="Fill" MouseDown="Image_MouseDown"/>
- </Border>
- <Button x:Name="b1" Grid.Column="0" Grid.Row="2" Margin="30" Content="100" Click="b1_Click"/>
- <Grid Grid.Column="1" Grid.Row="2">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Button x:Name="b2" Grid.Column="0" Margin="0 28 15 30" Content="1000" Click="b2_Click"/>
- <Button x:Name="b3" Grid.Column="1" Margin="15 28 0 30" Content="5000" Click="b3_Click"/>
- </Grid>
- <Button x:Name="b4" Grid.Column="2" Grid.Row="2" Margin="30" Content="10000" Click="b4_Click"/>
-
-
- </Grid>
- </TabItem>
-
- <TabItem Header="Shop" Height="23" Margin="-2.2,-2,-1.6,-0.2" VerticalAlignment="Top">
- <Grid>
- <Grid.Background>
- <ImageBrush ImageSource="Images/ti10.jpg"/>
- </Grid.Background>
- </Grid>
- </TabItem>
- </TabControl>
- </Grid>
- </Window>
|