gpt4 book ai didi

WPF RibbonWindow 不显示 Grip 以调整窗口大小

转载 作者:行者123 更新时间:2023-12-01 06:40:37 31 4
gpt4 key购买 nike

我有一个 RibbonWindow,其中我的 WindowStyle 设置为 None,所以我不明白 Grip 发生了什么来调整窗口大小?!即使我的控件底部的 Margin 设置为 0 也会被隐藏......这是一种奇怪的行为。

但是如果我更改控件的底部边距就可以了,但是无论如何都看不到 Grip,可能是因为部分客户区被隐藏了......

我不得不说,如果有一个 WPF 窗口,这不会发生,它只会发生在 RibbonWindow 上。我正在使用 RibbonWindow,因为 Ribbon 在正确的窗口中有其他外观。

那么我该怎么做才能解决 Grip 的问题呢?

我的一些代码...

<rib:RibbonWindow x:Class="MyApp.Views.MainView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:rib="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"
AllowsTransparency="True"
Background="Transparent"
Height="750"
ResizeMode="CanResizeWithGrip"
Width="1000"
WindowStartupLocation="CenterScreen"
WindowStyle="None">

<Grid Margin="0, 0, 0, 20">
<Border Background="Black"
CornerRadius="5"
Opacity="0.5"/>
</Grid>
</rib:RibbonWindow>

提前致谢!

最佳答案

这对调试很有趣。结果是窗口的样式有一个bug:如果系统定义为IsGlassEnabled == true (在 Win7 Aero 主题中使其成为 true )然后窗口依赖于 Microsoft.Windows.Shell.WindowChrome(来自 Microsoft.Windows.Shell 程序集)来绘制窗口的边框和顶部按钮;而这个 WindowChrome 有它的 GlassFrameThickness属性设置为 8,30,8,8结合 NonClientFrameEdges设置为 Bottom .

发生的事情是因为 AllowsTransparency == true玻璃边框是透明的,但由于 WindowChrome 窗口仍然从整体窗口尺寸中“削减”其厚度定义 NonClientFrameEdges="Bottom" ,从而切割 ResizeGrip从 View 。

如果您(疯狂地)将窗口拖到屏幕上,您可以看到这一点 - 您将看到 ResizeGrip闪烁。

为了解决这个问题,我们需要定义一个新的 WindowChromeNonClientFrameEdges="None" (或 GlassFrameThickness = 0 或两者)并仅在 IsGlassEnabled == true && AllowsTransparency == true 时才将其分配给窗口(我正在使用 App.xaml 中定义的应用程序资源并仅定义 NonClientFrameEdges="None" ):

1. Add these namespaces to App.xaml:
xmlns:ribbon="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"
xmlns:ribbonPrimitives="clr-namespace:Microsoft.Windows.Controls.Ribbon.Primitives;assembly=RibbonControlsLibrary"
xmlns:shell="clr-namespace:Microsoft.Windows.Shell;assembly=Microsoft.Windows.Shell"

2. Add these resources:
<ribbonPrimitives:RibbonWindowSmallIconConverter x:Key="RibbonWindowSmallIconConverter" />
<shell:WindowChrome x:Key="WindowChromeWithGlassAndTransparency"
NonClientFrameEdges="None" />
<Style x:Key="MyStyle"
TargetType="{x:Type ribbon:RibbonWindow}">
<Style.Triggers>
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Binding="{Binding Path=IsGlassEnabled, Source={x:Static shell:SystemParameters2.Current}}"
Value="True" />
<Condition Binding="{Binding AllowsTransparency, RelativeSource={RelativeSource Mode=Self}}"
Value="False" />
</MultiDataTrigger.Conditions>
<Setter Property="shell:WindowChrome.WindowChrome"
Value="{DynamicResource {ComponentResourceKey TypeInTargetAssembly={x:Type ribbon:Ribbon}, ResourceId=WindowChromeAeroWithGlass}}" />
</MultiDataTrigger>
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Binding="{Binding Path=IsGlassEnabled, Source={x:Static shell:SystemParameters2.Current}}"
Value="True" />
<Condition Binding="{Binding AllowsTransparency, RelativeSource={RelativeSource Mode=Self}}"
Value="True" />
</MultiDataTrigger.Conditions>
<Setter Property="shell:WindowChrome.WindowChrome"
Value="{DynamicResource WindowChromeWithGlassAndTransparency}" />
</MultiDataTrigger>
<DataTrigger Binding="{Binding Path=IsGlassEnabled, Source={x:Static shell:SystemParameters2.Current}}"
Value="True">
<!--This is the original setter of the chrome that makes all the trouble-->
<!--<Setter Property="shell:WindowChrome.WindowChrome"
Value="{DynamicResource {ComponentResourceKey TypeInTargetAssembly={x:Type ribbon:Ribbon}, ResourceId=WindowChromeAeroWithGlass}}" />-->
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ribbon:RibbonWindow}">
<Grid>
<Border Name="PART_ClientAreaBorder"
Background="{TemplateBinding Control.Background}"
BorderBrush="{TemplateBinding Control.BorderBrush}"
BorderThickness="{TemplateBinding Control.BorderThickness}"
Margin="{Binding Path=WindowNonClientFrameThickness, Source={x:Static shell:SystemParameters2.Current}}" />
<Border BorderThickness="{Binding Path=(shell:WindowChrome.WindowChrome).ResizeBorderThickness, RelativeSource={RelativeSource TemplatedParent}}">
<Grid>
<Image Name="PART_Icon"
shell:WindowChrome.IsHitTestVisibleInChrome="True"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Source="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Icon, Converter={StaticResource RibbonWindowSmallIconConverter }}"
Width="{Binding Path=SmallIconSize.Width, Source={x:Static shell:SystemParameters2.Current}}"
Height="{Binding Path=SmallIconSize.Height, Source={x:Static shell:SystemParameters2.Current}}" />
<AdornerDecorator>
<ContentPresenter Name="PART_RootContentPresenter" />
</AdornerDecorator>
<ResizeGrip Name="WindowResizeGrip"
shell:WindowChrome.ResizeGripDirection="BottomRight"
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Visibility="Collapsed"
IsTabStop="False" />
</Grid>
</Border>
</Grid>
<ControlTemplate.Triggers>
<Trigger Value="{x:Null}"
Property="Icon">
<Setter TargetName="PART_Icon"
Property="Source"
Value="/RibbonControlsLibrary;component/Images/GlassyDefaultSystemIcon.png" />
</Trigger>
<Trigger Property="WindowState"
Value="Maximized">
<Setter TargetName="PART_Icon"
Property="Margin"
Value="0,2,0,0" />
</Trigger>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="ResizeMode"
Value="CanResizeWithGrip" />
<Condition Property="WindowState"
Value="Normal" />
</MultiTrigger.Conditions>
<Setter TargetName="WindowResizeGrip"
Property="Visibility"
Value="Visible" />
</MultiTrigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>

3. In your window use the new style:
<rib:RibbonWindow ....
Style="{StaticResource MyStyle}">

....
</rib:RibbonWindow>
DataTrigger几乎和原始样式一样,只有一个修改:我已经评论了 WindowChrome 的 setter 。
MultiDataTrigger s 是我的补充。他们检查 AllowsTransparency 的值属性并应用正确的 WindowChrome: 如果值为 false,则为原始值和一个 NonClientFrameEdges="None" (您也可以使用 GlassFrameThickness = 0 代替)如果值为 true .

注意:此解决方案删除了​​使用边缘调整窗口大小的功能,调整窗口大小仅由 ResizeGrip 完成。 .

关于WPF RibbonWindow 不显示 Grip 以调整窗口大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7945699/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com