Вход на сайт
ИИ для программиста?
49928 просмотров
Перейти к просмотру всей ветки
в ответ alex445 07.09.24 18:43
Если у вас тулбар можно представить как набор команд с заголовками и иконками, почему нет?
ну вота, пихайте. Немного другое, но смысл тот же.
<ItemsControl x:Key="ToolbarButtons"> <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <StackPanel Orientation="Horizontal" /> </ItemsPanelTemplate> </ItemsControl.ItemsPanel> <ItemsControl.ItemTemplate> <DataTemplate> <Button Command="{Binding Command}" Style="{StaticResource ToolbarButtonStyle}"> <StackPanel Orientation="Horizontal"> <Image Source="{Binding Icon}" Width="16" Height="16" Margin="0,0,5,0" /> <TextBlock Text="{Binding Text}" VerticalAlignment="Center" /> </StackPanel> </Button> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl>