2014-04-11
展开全部
WindowStyle="None",title属性会保留的,但界面不显衫仿示。你是想界面上显示title吗?如果是可以自己在textblock设置孝清并改变位置,设置成title的巧塌前形式不就OK 了,没必要非要属性title显示一种方式。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
边框去掉,然后把所有东西都套在一个Panel里,title写在Panel顶部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你说旦散宏的是这个意思?模册
private const int GWL_STYLE = -16;
private const int WS_SYSMENU = 0x80000;
[System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)]
private static extern int GetWindowLong(IntPtr hWnd, int nIndex);
[System.Runtime.InteropServices.DllImport("掘耐user32.dll")]
private static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
private void Window_Loaded(object sender, RoutedEventArgs e)
{
var hwnd = new System.Windows.Interop.WindowInteropHelper(this).Handle;
SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU);
}
private const int GWL_STYLE = -16;
private const int WS_SYSMENU = 0x80000;
[System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)]
private static extern int GetWindowLong(IntPtr hWnd, int nIndex);
[System.Runtime.InteropServices.DllImport("掘耐user32.dll")]
private static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
private void Window_Loaded(object sender, RoutedEventArgs e)
{
var hwnd = new System.Windows.Interop.WindowInteropHelper(this).Handle;
SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) & ~WS_SYSMENU);
}
追问
不是的 ,我的意思是,去掉左右和下方的边框,但是上面的Title包括最大,最小化和关闭都存在
追答
额 那你做一个自定义的界面吧 自定义的符合你的要求
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询