Advertisement
Guest User

Untitled

a guest
Aug 31st, 2014
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <Window x:Class="Cooksim.ProduceShop"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="ProduceShop" Height="300" Width="300">
  5. <Grid>
  6. <ListBox x:Name ="produceListBox" HorizontalAlignment="Left" Height="270" VerticalAlignment="Top" Width="142" SelectionChanged="produceListBox_SelectionChanged" ItemsSource="{Binding vegShopList }"/>
  7. <Button x:Name="buyButton" Content="Buy" HorizontalAlignment="Left" Margin="217,248,0,0" VerticalAlignment="Top" Width="75" Click="buyButton_Click"/>
  8. <Label x:Name ="costLabel" Content="Cost" HorizontalAlignment="Left" Margin="147,10,0,0" VerticalAlignment="Top"/>
  9. <Label x:Name="moneyLabel" Content="{Binding Path=Money, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" Margin="147,246,0,0" VerticalAlignment="Top" RenderTransformOrigin="0.184,0"/>
  10.  
  11. </Grid>
  12. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement