<Window x:Class="B3DealerClient.Windows.Test"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Test" Height="300" Width="300">
|
|
<Grid>
|
|
<ListBox x:Name="lb">
|
|
<ListBox.Resources>
|
|
<Style TargetType="Button" BasedOn="{StaticResource RedButton}">
|
|
<EventSetter Event="PreviewMouseDown" Handler="BtnClick"/>
|
|
</Style>
|
|
</ListBox.Resources>
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<Button MinWidth="80" >
|
|
<Button.Content>
|
|
<TextBlock Text="{Binding Name}"/>
|
|
</Button.Content>
|
|
</Button>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
<!--<ListView x:Name="lv">
|
|
|
|
<ListView.Resources>
|
|
<Style TargetType="Button" BasedOn="{StaticResource RedButton}">
|
|
<EventSetter Event="PreviewMouseDown" Handler="BtnClick"/>
|
|
</Style>
|
|
</ListView.Resources>
|
|
<ListView.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
<Button MinWidth="80" >
|
|
<Button.Content>
|
|
<TextBlock Text="{Binding Name}"/>
|
|
</Button.Content>
|
|
</Button>
|
|
</DataTemplate>
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
</ListView>-->
|
|
</Grid>
|
|
</Window>
|