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);
}
}
}
展开
 我来答
尾巴熊
推荐于2016-05-17 · 超过11用户采纳过TA的回答
知道答主
回答量:24
采纳率:0%
帮助的人:27.5万
展开全部
按你的代码来看
1、首先你添加的是label而不是button
2、你没有设label的text属性,当然什么都看不到
3、如果要添加button 试着这样
Button button1 = new Button();
button1.Content="测试";
abc.Children.Add(button1);
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式