Im StackPanels
をC#で作成しています。現在、唯一の問題は、StackPanel
がDragOver
とDrop
のプロパティを持っていないということです作品C#でのXAMLstackpanelの作成DragOver Drop
StackPanel myPanel = new StackPanel
{
MinWidth = 150,
MinHeight = 150,
AllowDrop = true
};
MainStack.Children.Add(myPanel);
:C#で複製しようとしている
XAMLイムは、現在私が持っていることである
<StackPanel Grid.Column="0" Background="BlanchedAlmond" DragOver="panel_DragOver" Drop="panel_Drop" AllowDrop="True" MinWidth="150">
です、これをC#コードにどのように追加できますか?