如何在WPF中的视图中创建一个小表单

时间:2012-04-29 23:18:00

标签: c# xaml

如何在与WPF / XAML中红色中突出显示的视图相同的视图中创建小表单

enter image description here

修改

以及如何在我按下按钮时创建新选项时链接确定更新选项并选择此新选项

1 个答案:

答案 0 :(得分:0)

使用Popup

<Popup Name="Popup" PlacementTarget="{Binding ElementName=AddButton}" 
                       StaysOpen="False">
                    ... Add content here ...
                </Popup>