- 积分
- 46
- 在线时间
- 16 小时
- 主题
- 1
- 注册时间
- 2014-8-29
- 帖子
- 23
- 最后登录
- 2022-8-16
- 帖子
- 23
- 软币
- 234
- 在线时间
- 16 小时
- 注册时间
- 2014-8-29
|
本帖最后由 xkq9752 于 2014-8-29 13:39 编辑
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking" xmlns:dxc="http://schemas.devexpress.com/winfx/2008/xaml/charts" xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" x:Class="learnstock.MainWindow"
Title="MainWindow" Height="529.181" Width="717.321">
<Grid>
<dxdo:DockLayoutManager x:Name="dockmanger">
<dxdo:LayoutGroup x:Name="layoutgroup">
<dxdo:TabbedGroup>
<dxdo:LayoutPanel Caption="Solution Explorer" x:Name="panel1">
<Button Content="Button" x:Name="Button1" Click="Button1_Click"/>
</dxdo:LayoutPanel>
</dxdo:TabbedGroup>
</dxdo:LayoutGroup>
</dxdo:DockLayoutManager>
</Grid>
</Window>
请问增么动态增加Button1
<Button Content="Button" x:Name="Button1"/>
也就是这个怎么通过C#语法增加
panel1没有ChildAdd的方法
|
|