31

我正在尝试Ribbon与 结合进行控制RibbonWindow,但是即使在微不足道的实验中它们也失败了。

  1. 创建新的WPF 应用程序
  2. 将代码更改为MSDN 中的示例
  3. 添加了对前缀的引用System.Windows.Controls.Ribbon并删除了ribbon:前缀(为什么示例已过时?)。
  4. 添加了两个图标(16x16 和 32x32)。
  5. 执行应用程序并看到这个(记事本供参考):

我已经可以看到很多问题:

  1. 边框很小。普通窗口的边框很大,WPF 功能区应用程序的边框很小。标题高度也较小。
  2. 边界模糊。当一个普通窗口被聚焦时,它的边框是黑色的。WPF 应用程序的边框是灰色的(在角落可以看到黑色;在边框上绘制了一些东西?)。
  3. 应用程序图标放错了位置。它粘在左上角。
  4. 应用程序标题放错了位置。它粘在顶部。

让我们将工具栏移到底部。现在我们看到了:

按钮位于工具栏之外。

最后,让我们最大化窗口:

一半的标题消失在屏幕外(从技术上讲,窗口屏幕外每边 8 个像素,但其他应用程序不会被此混淆)。

我使用的是 Windows 7、Aero、单显示器,没什么特别的。我害怕在 Windows 8 上测试应用程序...

有机会解决这个问题吗?

4

5 回答 5

31

真正的问题

在后台,WindowChrome该类将其绑定ResizeBorderThickness到该类,SystemParameters.WindowResizeBorderThickness然后使用 Win32 APIGetSystemMetrics来确定系统边框大小。

但是,此方法的行为会根据可执行 PE 标头中设置的子系统版本而改变。如果只为 Windows Vista 和更高版本(版本 >= 6.0)编译,它将返回比为旧操作系统编译的更细的边框。此 SO 答案中有关此的更多信息。

在针对 .NET 4.5 进行编译时,C# 编译器将此版本设置为 6.0,因为 .NET 4.5 不能在 XP 上使用。但是,WindowChrome该类似乎依赖于遗留行为,因此无法在 Windows Vista 和 7 上正确计算玻璃尺寸。

解决方案

使用 .NET 4

您可以针对 .NET 4 进行编译,以强制编译器使用 4.0 作为其子系统版本值。功能区可用于 WPF 4 作为单独的下载。请注意,即使使用此解决方案,您也应取消选中项目属性中的“启用 Visual Studio 托管进程”以进行调试。否则,将使用带有子系统版本 6.0 的 vshost.exe 进程。

更改子系统版本

编辑: Olly 在评论中提供了一种方法:

在项目文件 <subsystemversion>5.01</subsystemversion>中添加一个属性,该属性错误地指示代码可以在 Windows XP 上运行。

忽略系统

您可以更改WindowChrome.WindowChrome窗口上的附加属性并使用所需的值,从而完全忽略系统值。你不应该那样做,但你可以。

填一个bug

Connect 上存在一个关于行为变化的GetSystemMetrics错误,但这一切都归结为子系统版本,因此从 Microsoft 的角度来看,它是一个功能。但是,WindowChrome该类确实应该被修复以在 Vista/7 下正常工作,特别是因为它现在是在 .NET 4.5 中构建的。

于 2012-09-24T15:12:04.500 回答
9

这是另一种解决方法,非常容易和简单的方法。只需在工具栏上添加一个负边距。您需要保留原始 Window 类而不是 RibbonWindow !

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Application Name" Height="350" Width="525" Loaded="Window_Loaded" SizeChanged="Window_SizeChanged">

只需将此边距添加到功能区标题

<Ribbon Title="" Foreground="#333333" Margin="0,-22,0,0">

现在,当您最大化窗口时,一切都保持正确

于 2015-01-01T10:57:35.230 回答
9

对于任何阅读此问题的人,我将自己回答。忘记可怕的捆绑功能区控件并使用其他东西。在这里寻找一些替代方案:什么是最好的 WPF 功能区控制套件?(就像所有好的问题一样,它已经关闭了)。

到目前为止,Fluent Ribbon Control Suite对我来说似乎是最好的免费选择。基本功能正常工作(边框和最大化没有问题,调整窗口并不慢等)。它具有 Office 样式并在玻璃被禁用时保留它们(这意味着您不会在 Metro 中看到 Windows9x-ish 窗口)。它的界面(后台、QAT)更像Office 2010。

也许在遥远的将来,微软会修复它的功能区,但现在,寻找替代品。

于 2012-09-24T21:31:45.593 回答
4

我对 RibbonWindow 中的标题有同样的问题。我通过在 RibbonTitlePanel 中设置 TextBlock 的全局样式来解决它。

    <Style TargetType="{x:Type TextBlock}"> 
    <Style.Triggers>
        <MultiDataTrigger>
            <MultiDataTrigger.Conditions>
                <Condition Binding="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type primitives:RibbonTitlePanel}},Path=Visibility}" Value="Visible"></Condition>
                <Condition Binding="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type RibbonWindow}},Path=WindowState}" Value="Maximized"></Condition>
            </MultiDataTrigger.Conditions>
            <MultiDataTrigger.Setters>
                <Setter Property="VerticalAlignment" Value="Center"></Setter>
            </MultiDataTrigger.Setters>
        </MultiDataTrigger>
    </Style.Triggers>
</Style>
于 2015-01-20T11:06:55.640 回答
1

这不是一个解决方案,甚至可能不是一个解决方法,而是一个糟糕的 hack,我希望只使用很短的时间,直到问题在框架中得到解决。

代码主要是从这个问题复制+粘贴https://stackoverflow.com/a/8082816/44726

我已经更改了允许的屏幕位置,这似乎有助于解决问题,而不是解决它。

后面的代码中调用是这样的

        InitializeComponent();
        RibbonWindowService.FixMaximizedWindowTitle(this);


public static class RibbonWindowService
{
    public static void FixMaximizedWindowTitle(Window window)
    {
        window.SourceInitialized += WinSourceInitialized;
    }

    [DllImport("user32")]
    internal static extern bool GetMonitorInfo(IntPtr hMonitor, MONITORINFO lpmi);

    [DllImport("User32")]
    internal static extern IntPtr MonitorFromWindow(IntPtr handle, int flags);

    private static IntPtr WindowProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
    {
        switch (msg)
        {
            case 0x0024:
                WmGetMinMaxInfo(hwnd, lParam);
                handled = true;
                break;
        }

        return (IntPtr)0;
    }

    private static void WmGetMinMaxInfo(IntPtr hwnd, IntPtr lParam)
    {
        MINMAXINFO mmi = (MINMAXINFO)Marshal.PtrToStructure(lParam, typeof(MINMAXINFO));

        // Adjust the maximized size and position to fit the work area of the correct monitor
        int MONITOR_DEFAULTTONEAREST = 0x00000002;
        IntPtr monitor = MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);

        if (monitor != IntPtr.Zero)
        {
            MONITORINFO monitorInfo = new MONITORINFO();
            GetMonitorInfo(monitor, monitorInfo);
            RECT rcWorkArea = monitorInfo.rcWork;
            RECT rcMonitorArea = monitorInfo.rcMonitor;

            // Offset top and left 1 pixel improves the situation
            rcMonitorArea.top += 1;
            rcMonitorArea.left += 1;

            mmi.ptMaxPosition.x = Math.Abs(rcWorkArea.left - rcMonitorArea.left);
            mmi.ptMaxPosition.y = Math.Abs(rcWorkArea.top - rcMonitorArea.top);
            mmi.ptMaxSize.x = Math.Abs(rcWorkArea.right - rcWorkArea.left);
            mmi.ptMaxSize.y = Math.Abs(rcWorkArea.bottom - rcWorkArea.top);
        }

        Marshal.StructureToPtr(mmi, lParam, true);
    }

    private static void WinSourceInitialized(object sender, EventArgs e)
    {
        IntPtr handle = (new WinInterop.WindowInteropHelper((Window)sender)).Handle;
        WinInterop.HwndSource.FromHwnd(handle).AddHook(WindowProc);
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct MINMAXINFO
    {
        public POINT ptReserved;
        public POINT ptMaxSize;
        public POINT ptMaxPosition;
        public POINT ptMinTrackSize;
        public POINT ptMaxTrackSize;
    };

    [StructLayout(LayoutKind.Sequential)]
    public struct POINT
    {
        /// <summary>
        /// x coordinate of point.
        /// </summary>
        public int x;

        /// <summary>
        /// y coordinate of point.
        /// </summary>
        public int y;

        /// <summary>
        /// Construct a point of coordinates (x,y).
        /// </summary>
        public POINT(int x, int y)
        {
            this.x = x;
            this.y = y;
        }
    }

    [StructLayout(LayoutKind.Sequential, Pack = 0)]
    public struct RECT
    {
        /// <summary> Win32 </summary>
        public int left;

        /// <summary> Win32 </summary>
        public int top;

        /// <summary> Win32 </summary>
        public int right;

        /// <summary> Win32 </summary>
        public int bottom;

        /// <summary> Win32 </summary>
        public static readonly RECT Empty = new RECT();

        /// <summary> Win32 </summary>
        public int Width
        {
            get { return Math.Abs(right - left); } // Abs needed for BIDI OS
        }

        /// <summary> Win32 </summary>
        public int Height
        {
            get { return bottom - top; }
        }

        /// <summary> Win32 </summary>
        public RECT(int left, int top, int right, int bottom)
        {
            this.left = left;
            this.top = top;
            this.right = right;
            this.bottom = bottom;
        }

        /// <summary> Win32 </summary>
        public RECT(RECT rcSrc)
        {
            left = rcSrc.left;
            top = rcSrc.top;
            right = rcSrc.right;
            bottom = rcSrc.bottom;
        }

        /// <summary> Win32 </summary>
        public bool IsEmpty
        {
            get
            {
                // BUGBUG : On Bidi OS (hebrew arabic) left > right
                return left >= right || top >= bottom;
            }
        }

        /// <summary> Return a user friendly representation of this struct </summary>
        public override string ToString()
        {
            if (this == Empty)
            {
                return "RECT {Empty}";
            }
            return "RECT { left : " + left + " / top : " + top + " / right : " + right + " / bottom : " + bottom + " }";
        }

        /// <summary> Determine if 2 RECT are equal (deep compare) </summary>
        public override bool Equals(object obj)
        {
            if (!(obj is Rect))
            {
                return false;
            }
            return (this == (RECT)obj);
        }

        /// <summary>Return the HashCode for this struct (not garanteed to be unique)</summary>
        public override int GetHashCode()
        {
            return left.GetHashCode() + top.GetHashCode() + right.GetHashCode() + bottom.GetHashCode();
        }

        /// <summary> Determine if 2 RECT are equal (deep compare)</summary>
        public static bool operator ==(RECT rect1, RECT rect2)
        {
            return (rect1.left == rect2.left && rect1.top == rect2.top && rect1.right == rect2.right && rect1.bottom == rect2.bottom);
        }

        /// <summary> Determine if 2 RECT are different(deep compare)</summary>
        public static bool operator !=(RECT rect1, RECT rect2)
        {
            return !(rect1 == rect2);
        }
    }

    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
    public class MONITORINFO
    {
        /// <summary>
        /// </summary>            
        public int cbSize = Marshal.SizeOf(typeof(MONITORINFO));

        /// <summary>
        /// </summary>            
        public RECT rcMonitor = new RECT();

        /// <summary>
        /// </summary>            
        public RECT rcWork = new RECT();

        /// <summary>
        /// </summary>            
        public int dwFlags = 0;
    }
}
于 2013-02-19T14:00:34.657 回答