childwindow

Silverlight - preventing ChildWindow movement

Anyone got any neat solutions to prevent a Silverlight ChildWindow being moved? thanks, Mark ...

How to know the position of the Silverlight ChildWindow when you close it

Please, help me. public myChildWindow() { InitializeComponent(); // set left and top from saved values Margin = new Thickness(70, 50, 0, 0); } private void ChildWindow_Closed(object sender, EventArgs e) { // How to know the position of the ChildWindow when you close it ? // get left and top for save values ... ...

Can an user control be loaded in a child window in Silverlight 3.0?

Can an user control be loaded in a child window in Silverlight 3.0? ...

silverlight child window

how can i do that my child window will be always on top? now its being blocked by other windows... ...

silverLight childWindow

how can i do my childWindow to be always on top? ...

Tooltips Problem with Infragistics UltraToolBar in child window

Currently have an UltraToolBar displaying within a MDI child window currently all the buttons on the bar function but they do not show their tooltips when hovered over. I was wondering if anyone else may have dealt with this problem before and what they did. ...

Pass data to Child Window in Silverlight 4 using MVVM

Hello, I have a datagrid with master detail implementation as follows: <data:DataGrid x:Name="dgData" Width="600" ItemsSource="{Binding Path=ItemCollection}" HorizontalScrollBarVisibility="Hidden" CanUserSortColumns="False" RowDetailsVisibilityChanged="dgData_RowDetailsVisibilityChanged"> <da...

How to hide the border around child window

Hi, I have a child Window , and I am displaying it from the code behind as below: ChildPhotoViewer PhotoViewer = new ChildPhotoViewer(); PhotoViewer.DataContext = selectedPhoto; PhotoViewer.Title = selectedPhoto.strTitle.ToString(); PhotoViewer.Show(); But While Displaying the child win...

win32 sdk: how to make the caption/border of a child window transparent

In my win32 application I want to create a child window within the main window. I assigned these styles to the child window when calling CreateWindowEx: WS_CHILDWINDOW | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | WS_SIZEBOX | WS_CAPTION The child window I get has a caption and a resizable border. However there's no close button in the cap...

How to stop the Silverlight Child Window from being dragged off screen

In our Silverlight 3 project, I am using the ChildWindow control to display several system dialogs. This presents the dialog in a modal window that the user can then drag around if required. The problem is that it is actually possible for them to drag the ChildWindow off screen, so that it cannot be picked up again and dragged back on ...

How do I pass value from child window to parent window?

I have an html page (parent window) and an aspx page (child page). I have the values in lblNames.text in the child page. How do I pass the values in label (lblNames) from the child window to the textarea in the parent window? parent window: <script type="text/javascript" language="JavaScript"> function showPopup(){ window.showModalDi...

using MVVM light messenger with Silverlight 4 ChildWindow dialog class

Greetings! Am enjoying using MVVM light -great framework - has made my life much easier, and has removed a number of barriers that were proving difficult to overcome.... Question: I am attempting to setup a custom dialog box for editing messages users send to each other. I am attempting to construct a silverlight custom dialog box usin...

How can I tell which Silverlight Popup (or ChildWindow) is topmost?

I am trying to hit test in Silverlight applications to find the elements under the mouse cursor. Normally VisualTreeHelper.FindElementsInHostCoordinates works for this. If there is a Popup open I need to pass in the popup to the hit testing method. If there are multiple popups open, I need to determine the correct (topmost) popup to pas...

silverlight - change child window position when opened

How do I change position of childWindow control when it is opened? I want to do that because I want to make resize animation. ...

Silverlight Inkpresenter in a childwindow

I have an image that I draw on using an ink presenter. When its on just a normal silverlight page and the browser zoom is changed everything works fine. If I use the same code/image/ink presenter within a child window and the browser zoom is set to anything other than 100% the ink that gets drawn does match up with the mouse. Thoughts...

Silverlight - Possible to not rotate parent window overlay when ChildWindow rotates?

I've got a ChildWindow that rotates 180 degrees when I click a button. I'm also using a ChildWindow.OverlayBrush to dim out the parent window. This of course rotates as well when the ChildWindow rotates. Is there anyway to dim out the parent window without it rotating with the ChildWindow? ...

silverlight 4 and Refresh Parent Window when Child Window closed

Hi All, In my SL4 App I have a Parent Page where I'm displaying a datagrid. I open the ChildWindow when the user selects a particular Row in the grid and clicks on Open button using the following code. cwEditProduct ChildWin = new cwEditProduct(productId); ChildWin.Closed += new EventHandler(ChildWin_Closed); ChildWin.Show(); and Whe...