wpf 中怎么设置一个窗体总在最前显示,非模式对话框怎么只显示一个。
展开全部
this.TopMost=true 就可以了。
把窗体对象定义为全局变量,给他赋空值,判断他是否为空,为空就初始化,不为空就直接 show().当窗体关闭的时候,在让这个对象等于空。如果只想显示一个,在初始化时,判断其他窗体是否为空就可以了。为空就初始化,不为空就跳过。
private MusicWindow WinObj;
private void btn_SetMusicePage_Click(object sender, RoutedEventArgs e)
{
if (WinObj == null)
{
WinObj = new MusicWindow();
WinObj.Closed += new EventHandler(WinObj_Closed);
WinObj.Show();
}
}
void WinObj_Closed(object sender, EventArgs e)
{
WinObj = null;
}
把窗体对象定义为全局变量,给他赋空值,判断他是否为空,为空就初始化,不为空就直接 show().当窗体关闭的时候,在让这个对象等于空。如果只想显示一个,在初始化时,判断其他窗体是否为空就可以了。为空就初始化,不为空就跳过。
private MusicWindow WinObj;
private void btn_SetMusicePage_Click(object sender, RoutedEventArgs e)
{
if (WinObj == null)
{
WinObj = new MusicWindow();
WinObj.Closed += new EventHandler(WinObj_Closed);
WinObj.Show();
}
}
void WinObj_Closed(object sender, EventArgs e)
{
WinObj = null;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询