我为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