This question is locked. New answers and comments are not allowed.
Hello Telerik Team,
i see some problem with the RadWindow after Close.
I had a RadWindow with databinding. after i close the window the window and its binding is still there.
here is my code:
The binding is still there and i makes me crazy :D
i see some problem with the RadWindow after Close.
I had a RadWindow with databinding. after i close the window the window and its binding is still there.
here is my code:
Public
WithEvents
ScreenDoorDetails
As
DoorDetails
Private
Sub
btstore_Click(sender
As
Object
, e
As
System.Windows.RoutedEventArgs)
Handles
btstore.Click
ScreenDoorDetails =
New
DoorDetails(Tuerelemente.Tuerelemente)
ScreenDoorDetails.ShowDialog()
End
Sub
Private
Sub
ScreenDoorDetails_Closed(sender
As
Object
, e
As
Telerik.Windows.Controls.WindowClosedEventArgs)
Handles
ScreenDoorDetails.Closed
ScreenDoorDetails.DataContext =
Nothing
ScreenDoorDetails =
Nothing
GC.Collect()
End
Sub
The binding is still there and i makes me crazy :D