Posts

Showing posts with the label toolbar

WPF: The toolbar is a keyboard trap

Image
Clash Royale CLAN TAG #URR8PPP WPF: The toolbar is a keyboard trap I have the following XAML code: <ToolBarTray DockPanel.Dock="Top"> <ToolBar VerticalAlignment="Top"> <ComboBox x:Name="ComboboxFontname" ToolTip="Auswahlliste um Schriftart festzulegen" ItemsSource="{x:Static Fonts.SystemFontFamilies}" SelectedIndex="0" Width="200" GotFocus="ComboBox_GotFocus" LostFocus="ComboBox_LostFocus"/> <ComboBox x:Name="ComboboxFontsize" ToolTip="Auswahlliste um Schriftgröße festzulegen" SelectedIndex="0" Width="45" GotFocus="ComboBox_GotFocus" LostFocus="ComboBox_LostFocus"> <ComboBoxItem Content="12"/> <ComboBoxItem Content="14"/> <ComboBoxItem Content="16"/> ...