不显示删除回复显示所有回复显示星级回复显示得分回复 WPF中C#代码生成窗体并添加Grid问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不显示删除回复显示所有回复显示星级回复显示得分回复 WPF中C#代码生成窗体并添加Grid问题相关的知识,希望对你有一定的参考价值。

大家好,初学WPF。
今天在测试用后台去为Window添加Grid时无法显示。
不知错了那里。
Window window2 = new Window();
window2.AllowsTransparency = true;

window2.WindowStyle = System.Windows.WindowStyle.None;
window2.Height = 300;
window2.Width = 400;
window2.Background = new SolidColorBrush(Color.FromRgb(255, 255, 255));
window2.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner;

window2.Show();
System.Windows.Threading.Dispatcher.Run();
Grid grid2 = new Grid();
grid2.Height = 350;
grid2.Width = 350;
grid2.Background = new SolidColorBrush(Color.FromRgb(255, 0, 0));
window2.Content = grid2; //我觉的应该是这句不对。但是我不知道应该怎么把grid2添加进window2。我没有找到window2的Children或者AddChild函数。
谢谢了。

先加Grid,再show出来。

Window window2 = new Window();
window2.AllowsTransparency = true;

window2.WindowStyle = System.Windows.WindowStyle.None;
window2.Height = 300;
window2.Width = 400;
window2.Background = Brushes.Black;
window2.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner;
window2.Title = "Test";
Grid grid2 = new Grid();
grid2.Height = 300;
grid2.Width = 350;
grid2.Background = Brushes.Red;
window2.Content = grid2;
window2.Show();
System.Windows.Threading.Dispatcher.Run();
参考技术A h

以上是关于不显示删除回复显示所有回复显示星级回复显示得分回复 WPF中C#代码生成窗体并添加Grid问题的主要内容,如果未能解决你的问题,请参考以下文章

java应该怎么实现论坛关于回复的回复 啊

php 留言板 留言和回复

如何在 django 模板中显示评论及其回复?

评论回复功能设计

回复中未显示完整地址

js实现点击评论进行显示回复框