31

Ribbonと組み合わせて制御を試みてRibbonWindowいますが、些細な実験でも失敗します。

  1. 新しいWPFアプリケーションを作成しました
  2. コードをMSDNの例に変更
  3. プレフィックスへの参照を追加しSystem.Windows.Controls.Ribbonribbon:プレフィックスを削除しました(例が古くなっているのはなぜですか?)。
  4. 2つのアイコン(16x16と32x32)を追加しました。
  5. アプリケーションを実行し、これを見ました(参照用のメモ帳):

私はすでに多くの問題を見ることができます:

  1. ボーダーは小さいです。通常のウィンドウには大きな境界線があり、WPFリボンアプリには小さな境界線があります。タイトルの高さも低くなっています。
  2. 境界線がぼやけています。通常のウィンドウにフォーカスがある場合、その境界線は黒です。WPFアプリの境界線は灰色がかっています(隅に黒が表示されています。境界線の上に何かが描かれていますか?)。
  3. アプリケーションアイコンの位置が間違っています。左上隅に接着されています。
  4. アプリケーションのタイトルが間違っています。それは上に接着されています。

ツールバーを一番下に移動しましょう。今、私たちはこれを見ます:

ボタンはツールバーの外側にあります。

そして最後に、ウィンドウを最大化しましょう。

ヘッダーの半分が画面の外に消えました(技術的には、ウィンドウ画面の四方に8ピクセルありますが、他のアプリはこれで混乱しません)。

私はWindows7、Aero、シングルモニターを使用していますが、特別なことは何もありません。Windows8でアプリケーションをテストするのが怖いです...

これを修正するチャンスはありますか?

4

5 に答える 5

31

本当の問題

内部的には、クラスはそのクラスをWindowChromeバインドし、Win32APIを使用してシステムの境界サイズを決定します。ResizeBorderThicknessSystemParameters.WindowResizeBorderThicknessGetSystemMetrics

ただし、このメソッドの動作は、実行可能PEヘッダーに設定されているサブシステムのバージョンによって異なります。Windows Vista以降(バージョン> = 6.0)専用にコンパイルした場合、古いオペレーティングシステム用にコンパイルした場合よりも細い境界線が返されます。このSOの回答でこれに関する詳細情報。

.NET 4.5に対してコンパイルする場合、.NET 4.5はXPで使用できないため、C#コンパイラはこのバージョンを6.0に設定します。ただし、WindowChromeクラスは従来の動作に依存しているようであるため、WindowsVistaおよび7ではガラスサイズを正しく計算できません。

ソリューション

.NET4を使用する

.NET 4に対してコンパイルして、コンパイラーにサブシステムのバージョン値として4.0を使用させることができます。リボンは、WPF4で個別にダウンロードできます。このソリューションを使用する場合でも、デバッグの目的で、プロジェクトのプロパティで[VisualStudioホスティングプロセスを有効にする]のチェックを外す必要があることに注意してください。それ以外の場合は、vshost.exeプロセスが使用され、サブシステムバージョン6.0のフラグが付けられます。

サブシステムのバージョンを変更する

編集:オリーはコメントでこれを行う方法を提供しました:

<subsystemversion>5.01</subsystemversion>コードがWindowsXPで実行できることを誤って示すプロパティをプロジェクトファイルに追加します 。

システムを無視する

ウィンドウの添付プロパティを変更しWindowChrome.WindowChromeて必要な値を使用できるため、システム値を完全に無視できます。絶対にやるべきではありませんが、できます。

バグを埋める

Connectには、の動作の変更GetSystemMetricsに関する既存のバグがありますが、それはすべてサブシステムバージョンに起因するため、Microsoftの観点からはむしろ機能です。ただし、WindowChrome特に.NET 4.5に組み込まれているため、クラスはVista/7で正しく機能するように実際に修正する必要があります。

于 2012-09-24T15:12:04.500 に答える
9

この質問を読んだ人のために、私は自分で答えています。恐ろしいバンドルリボンコントロールを忘れて、他のものを使用してください。ここでいくつかの選択肢を探してください:最高のWPFリボンコントロールスイートとは何ですか?(すべての良い質問のように、それは閉じられています)。

これまでのところ、Fluent RibbonControlSuiteは私にとって最良の無料オプションのように見えます。基本的な機能は問題なく機能します(境界線や最大化の問題はなく、ウィンドウのサイズ変更は地獄のように遅くはありません)。Officeスタイルがあり、ガラスが無効になっている場合でもそれらを保持します(つまり、MetroでWindows9x風のウィンドウは表示されません)。そのインターフェイス(舞台裏、QAT)はOffice2010に似ています。

おそらく遠い将来、Microsoftはリボンを修正するでしょうが、今のところ、代替案を探してください。

于 2012-09-24T21:31:45.593 に答える
9

これは別の回避策で、非常に簡単でシンプルな方法です。ツールバーに負のマージンを追加するだけです。RibbonWindowではなく、元のWindowクラスを保持する必要があります。

<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 に答える
4

リボンウィンドウのタイトルにも同じ問題がありました。私は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

これは解決策ではなく、おそらく回避策ではなく、ハックが不十分であり、フレームワークで問題が修正されるまでの短い時間だけ使用したいと考えています。

コードは主にこの質問からのコピーと貼り付けです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 に答える