8,757
社区成员
发帖
与我相关
我的任务
分享<DataTemplate x:Key="RecentProjectTemplate">
<Grid Margin="0,10,0,0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="auto">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="25" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition ></RowDefinition>
</Grid.RowDefinitions> <StackPanel Grid.Column="1" Grid.Row="0" Background="Red" Margin="0,0,0,0">
<StackPanel.InputBindings>
<MouseBinding Command="{Binding DataContext.RecentProjectsCommand, RelativeSource={RelativeSource AncestorType=ListBox}}" MouseAction="LeftClick" />
</StackPanel.InputBindings>
<TextBlock Foreground="Black" Text="{Binding}" Margin="20,0,0,0">
</TextBlock>
</StackPanel>
</Grid>
</DataTemplate>
模板里面修改你的大小啊