System.Windows.Controls.Ribbon
アプリケーションにライブラリを使用しています。ウィンドウを最大化すると画面から消え始めることを除いて、すべてがうまく機能しています。
他の WPF アプリケーションでも気付きましたが、使用するRibbonWindow
と悪化します。
これが私のソースコードです(私が思うに本当にエキサイティングなことは何もありません):
<RibbonWindow
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="WpfApplication1.MainWindow"
Title="TestWindow" Height="350" Width="525" Background="LightSteelBlue">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Ribbon Grid.Row="0">
<RibbonTab x:Name="TestRibbon" Header="TestRibbon">
<RibbonGroup>
<RibbonButton x:Name="TestButton" Label="Button" LargeImageSource="traffic_lights_green.png" />
</RibbonGroup>
</RibbonTab>
</Ribbon>
<ContentControl Grid.Row="1">
</ContentControl>
</Grid>
</RibbonWindow>
ウィンドウがこれを行うのを止める方法はありますか?