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/bdymb4sabhy5z4h9.jpg"/>
- </Grid.Background>
- <TabControl>
- <TabItem Header="Clicker">
- <Grid Margin="0,8,0,-8">
- <Grid.Background>
- <ImageBrush ImageSource="Images/VWcu9kUyEf4.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="Red" 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/7a3ab93f.png"/>
- </Button.Background>
- </Button>
- <TextBlock x:Name="cli" Grid.Column="2" Grid.Row="0" Text="PointsPerClick: " HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Red" FontSize="20"/>
- <Border Grid.Row="1" BorderBrush="White" BorderThickness="1" Grid.ColumnSpan="2" Margin="198,10,0,105" Grid.RowSpan="2" Grid.Column="1">
- <Image x:Name="imgYatoro" Source="Images/FknNXVgJVk8.jpg" Stretch="Fill" MouseDown="Image_MouseDown" Margin="-1,-1,1,1"/>
- </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/bdymb4sabhy5z4h9.jpg"/>
- </Grid.Background>
- </Grid>
- </TabItem>
- </TabControl>
- </Grid>
- </Window>
|