如何在继承的Datagridview控件WPF中添加控件

时间:2016-02-27 04:48:43

标签: wpf user-controls wpfdatagrid

我为Datagridview继承了UserControl,现在我想在单元格下面画一个ListBox,请帮我解决这个问题。

在普通的Windows .net应用程序中我使用此

public class MyControl : Datagridview
{
  Listbox Lst = new Listbox();
  this.controls.Add(Lst);
  Lst.visible= false;

 //in Beginedit event
 //I make visible Lst below the requited cell
}

在WPF中,请告诉我该怎么做。  我在wpf。

中使用DataBound DataGrid

0 个答案:

没有答案