我正在使用航空玻璃作为背景构建表单,正如我在“Windows Aero Glass background is broken after hibernate. How can I solve this?”中所描述的那样。窗口设置为ResizeMode="NoResize" SizeToContent="WidthAndHeight"
。
有一个Grid,有一些固定列和一个带有元素的变量列。此元素设置为可见和折叠。我的窗户应该自我扩展和收缩,这是完美的。
我的问题是,重新调整后,所有控件都会在每个维度上模糊约1个像素。通过明显地对元素进行重新生成来重新生成先前的大小 - 状态此模糊消失。我已经知道了,每当窗口被编程调整大小时它就会出现。如果用户调整大小,只需拖动角落(当前没有ResizeMode="NoResize"
),控件就会保持清晰。
SnapsToDevicePixels="True"
似乎对此行为没有任何影响。
如果Aero Glass被禁用,一切都会完美运行并保持清晰。
我期待收到你的建议。
提前谢谢。
编辑:
示例:
XAML:
<Window x:Class="glass_sample.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="SampleWindow"
ResizeMode="NoResize"
SizeToContent="WidthAndHeight"
Loaded="Window_Loaded"
Background="{StaticResource {x:Static SystemColors.ActiveCaptionBrushKey}}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="80" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button Content="Toggle"
Click="Button_Click" />
<Button IsEnabled="False"
Grid.Column="1"
Margin="5"
Content="Expanded"
Visibility="Collapsed"
Name="expand" />
</Grid>
</Window>
CS:
public MainWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
this.expand.Visibility = (this.expand.Visibility == System.Windows.Visibility.Visible) ? System.Windows.Visibility.Collapsed : System.Windows.Visibility.Visible;
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
GlassHelper.GlassFrame(this);
// this is my aero-glass class. It extends glass over clientarea and repeats
// this when WM_THEMECHANGED or WM_DWMCOMPOSITIONCHANGED is recieved.
}