WPF如何动态添加控件 我只是想加一个button 怎么显示不出来呢?

<Windowx:Class="shiyan.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml... <Window x:Class="shiyan.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">
<Canvas Name="abc">

</Canvas>
</Window>
/////////////////////////////////////////////////////////////

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace shiyan
{
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}

private void Window_Loaded(object sender, RoutedEventArgs e)
{
Label button1 = new Label();
abc.Children.Add(button1);
}
}
}
展开
 我来答
luorigezhu
2011-03-27 · TA获得超过447个赞
知道小有建树答主
回答量:273
采纳率:0%
帮助的人:271万
展开全部

这是因为标签没有内容。

在下面这两行中间,

 Label button1 = new Label();

            abc.Children.Add(button1);

添加:

   button1.Content="这是个标签按钮";

==================

   Label button1 = new Label();

     button1.Content="这是个标签按钮";

     abc.Children.Add(button1);

结果如下:

追问
哦  果然好了  还有一些小问题想请教一下您,能QQ聊吗?  我QQ:609059612
追答
中午我加你。我马上要去上课。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式