You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

43 lines
1.3 KiB

<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>