Windows Presentation Foundation (WPF) Question:

How can I set an attached property in code?

Tweet Share WhatsApp

Answer:

The following example shows how you can set an attached property in code.

[C#]

DockPanel myDockPanel = new DockPanel();
CheckBox myCheckBox = new CheckBox();
myCheckBox.Content = "Hello";
myDockPanel.Children.Add(myCheckBox);
DockPanel.SetDock(myCheckBox, Dock.Top);

Download WPF PDF Read All 57 WPF Questions
Previous QuestionNext Question
How can I mark the default value of a custom dependency property to be false?How can I use an application resource?