nguyenvansutt
nguyenvansutt

Reputation: 27

How to get the Radwindow from a page in wpf

My application has many pages inside Radwindow. in code behind of the page, how can I get the Radwindow. eg: I want to change Radwindow's title,...

Thanks for any answer

Upvotes: 0

Views: 100

Answers (1)

John Nguyen
John Nguyen

Reputation: 701

you can try

var wnd = RadWindow.GetParentRadWindow(this);

Upvotes: 1

Related Questions