Hi,
I am openning a radwindow on button click from code behind as below in silverlight 5 app:
Would it be possible to add print functionality to this from code behind?
Thanks
I am openning a radwindow on button click from code behind as below in silverlight 5 app:
RadWindow
newChldWindow =
new
RadWindow
();
newChldWindow.Closed += popUpCloseEvent;
newChldWindow.Height = 650;
newChldWindow.Width = 1000;
newChldWindow.ResizeMode =
ResizeMode
.CanResize;
newChldWindow.CanMove =
true
;
Would it be possible to add print functionality to this from code behind?
Thanks