或者还有一个更简单的办法: 新建一个WPF工程,把主窗口的Title去掉,程序就不会显示在应用里了,窗口定义如下:
<Window x:Class="YouProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
ShowInTaskbar="False"
WindowStyle="None"
ResizeMode="NoResize"
Height="120" Width="160">
如果你要窗口不出现在Alt+Tab列表中,那就把WindowStyle设置为:WindowStyle="ToolWindow"
希望能够帮到你
//新建Window,把其默认的Grid元素删除,然后//在Window_Loaded事件里粘贴如下代码
private void Window_Loaded(object sender, RoutedEventArgs e)
{
Grid g = new Grid()
g.HorizontalAlignment = HorizontalAlignment.Stretch
g.VerticalAlignment = VerticalAlignment.Stretch
g.Background = Brushes.Blue
ScrollViewer s = new ScrollViewer()
s.Width = 100
s.Height = 100
Label l = new Label()
l.Content = @"wpf 控件内 动态添加 控件
Oo巴黎迷雾_ | 分类:C#/.NET | 浏览17次
请示范一个简单的完整例子,不是在form里, 而是在wpf grid里的scrollviewer控件添加label控件。"
s.Content = l
this.AddChild(s)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)