How c开发者_如何学Pythonan I know from my Silverlight main UserControl (RootVisual) that a ChildWindow is displaying?Not sure if there\'s any way more specific than setting up the wiring yourself.
Following is the code I used to call the child window: Dim c As New New_Contact() c.Title = \"New Contact Details\"
could someone help me with childwindow and Navigation? I created a childwindow from code and set its content as
A couple of weeks ago someone here helped me out 开发者_如何学编程with writing a class that enumerates all main windows.
I\'m not sure if what I\'m experiencing is the same as here: Silverlight ChildWindow Memory Leak but...:
Hopefully the title makes sense but I will discribe my issue. I am using a childwindow in Silverlight to display a Processing message and rotating image when the UI is doing some work. Once a Complete
In current project, i have to create a tab based navigation. Every time we click a module, a new TabControl opens if not alteady created, else focus. To achieve this i use a code like this:
I am creating a child win开发者_开发技巧dow to login in my application. I already disabled the X button, however, if the user types on the keyboard CTRL + SHIFT + F4 closes the window and jump the log
I have page.xaml and childwindow. How i can close the childwindow from page.xaml. Example by click on button in page.xaml. How i can get this childWindow from co开发者_JAVA技巧de?Name your ChildWindow
In my SL4 App I have a Parent Page where I\'m displaying a datagrid. I open the ChildWindow when the user selects aparticular Row in the grid and clicks on Open button using the following code.