Ribbon
コントロールをRibbonWindow
と組み合わせて試していますが、簡単な実験でも失敗します。
System.Windows.Controls.Ribbon
への参照を追加し、ribbon:
接頭辞を取り除きました(なぜ例が古くなっているのですか?)。私はすでに多くの問題を見ることができます:
ツールバーを下に移動しましょう。これが見えます:
ボタンはツールバーの外側にあります。
そして最後に、ウィンドウを最大化しましょう:
ヘッダーの半分が画面の外に消えました(技術的にはウィンドウは画面の外側に8ピクセルずつですが、他のアプリはこれによって混乱しません)。
私はWindows 7、Aero、シングルモニターを使用していますが、特別なことは何もありません。 Windows 8でアプリケーションをテストすることを恐れています...
これを修正する機会はありますか?
内部では、 WindowChrome
クラスがResizeBorderThickness
をSystemParameters.WindowResizeBorderThickness
にバインドし、次にWin32 APIを使用します GetSystemMetrics
システムの境界サイズを決定します。
ただし、このメソッドの動作は、実行可能PEヘッダーに設定されているサブシステムのバージョンによって異なります。 Windows Vista以降(バージョン> = 6.0)用にコンパイルした場合、古いオペレーティングシステム用にコンパイルした場合よりも薄い境界線が返されます。 これの詳細については、SO回答
.NET 4.5はXPでは使用できないため、.NET 4.5に対してコンパイルする場合、C#コンパイラはこのバージョンを6.0に設定します。ただし、WindowChrome
クラスはレガシーの動作に依存しているように見えるため、Windows Vistaおよび7ではガラスサイズを正しく計算できません。
.NET 4に対してコンパイルして、コンパイラーにサブシステムのバージョン値として4.0を使用させることができます。 WPF 4では、リボンは 個別のダウンロード として利用できます。このソリューションでも、デバッグの目的でプロジェクトプロパティの[Visual Studioホスティングプロセスを有効にする]をオフにする必要があることに注意してください。それ以外の場合は、vshost.exeプロセスが使用され、サブシステムバージョン6.0でフラグが立てられます。
編集:オリーはこれをコメントで行う方法を提供しました:
プロジェクトファイル
<subsystemversion>5.01</subsystemversion>
に、Windows XPでコードを実行できることを誤って示すプロパティを追加します。
ウィンドウのWindowChrome.WindowChrome
添付プロパティを変更し、必要な値を使用して、システム値を完全に無視できます。あなたはそれを決してすべきではありませんが、それは可能です。
Connectには GetSystemMetrics
の動作の変更 に関する既存のバグがありますが、すべてサブシステムのバージョンにまで達しているため、Microsoftの観点からは機能です。ただし、WindowChrome
クラスは、特に.NET 4.5に組み込まれているため、Vista/7で正しく機能するように実際に修正する必要があります。
これは、非常に簡単でシンプルな別の回避策です。ツールバーに負のマージンを追加するだけです。 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">
ウィンドウを最大化すると、すべてが正しくなります
この質問を読んだ人のために、私は自分で答えています。ひどいバンドルされたリボンコントロールを忘れて、他のものを使用します。代替案のいくつかをここで探してください。 Best WPF Ribbon Control Suiteとは何ですか? (すべての良い質問と同様に、閉じられています)。
これまでのところ、 Fluent Ribbon Control Suite は私にとって最高の無料オプションのように見えます。基本的な機能はそのまま機能します(境界線や最大化、ウィンドウのサイズ変更に問題はなく、地獄などのように遅くはありません)。 Officeスタイルがあり、ガラスが無効になっている場合はそれを保持します(つまり、MetroではWindows9xっぽいウィンドウが表示されません)。そのインターフェイス(バックステージ、QAT)は、Office 2010に似ています。
たぶん遠い将来、マイクロソフトはそのリボンを修正しますが、今のところ代替案を探します。
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>
これは解決策ではなく、おそらく回避策でもありませんが、ハックが不十分であり、フレームワークで問題が修正されるまでの短い時間だけ使用したいと考えています。
コードは主にこの質問のコピー+貼り付けです 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;
}
}