Silverlight - preventing ChildWindow movement
Anyone got any neat solutions to prevent a Silverlight ChildWindow being moved? thanks, Mark ...
Anyone got any neat solutions to prevent a Silverlight ChildWindow being moved? thanks, Mark ...
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? ...
how can i do that my child window will be always on top? now its being blocked by other windows... ...
how can i do my childWindow to be always on top? ...
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. ...
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...
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...
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...
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 ...
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...
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...
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...
How do I change position of childWindow control when it is opened? I want to do that because I want to make resize animation. ...
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...
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? ...
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...