Tagged Questions
The childwindow tag has no wiki summary.
10
votes
5answers
6k views
Silverlight ChildWindow for WPF
is it possible to make a ChildWindow like ChildWindow in Silverlight, but for WPF? I tried to adapt the Silverlight ChildWindow to WPF but ran into issues with Transformations and not being able to ...
8
votes
1answer
4k views
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 ...
5
votes
5answers
1k views
How to close a ChildWindow with Cancel button using MVVM Light Toolkit
I'm new to MVVM and trying to figure out how to close a ChildWindow with the traditional Cancel button using MVVM Light Toolkit.
In my ChildWindow (StoreDetail.xaml), I have :
<Button ...
4
votes
4answers
536 views
Using MVVM in WPF, should I lauch child windows from View code behind, or ViewModel?
I've been puzzled by this for a while. I am writing quite a large RibbonWindow WPF application using the MVVM pattern. The screen has a RibbonBar menu along the top and the rest of it displays the ...
4
votes
3answers
2k views
Silverlight Confirm Dialog to Pause Thread
I'm trying to do a confirmation dialog using Silverlight's ChildWindow object.
Ideally, I'd like it to work like MessageBox.Show(), where the entire application halts until an input is received from ...
4
votes
2answers
712 views
How do I get the active ChildWindow of an application?
I want to send a pressKey event to a certain application which is not the active application IN Windows so I have to use the sendMessage/postMessage api calls.
However, I need to know the exact child ...
3
votes
3answers
62 views
How to simplify the code for settings values passed between a main and child forms
I have a class that stores settings for my app. It is instantiated when the app. runs and saved when the app. closes.
public class Settings
{
public bool showPrivacyPageOnBlogs;
public bool ...
3
votes
1answer
115 views
ChildWindow won't display when call from the main(Silverlight, C#)
I have a Silverlight application (edit: an Out-of-browser application with elevated trust) which must open a ChildWindow (for login purpose). When I (try to) call the event from the main (or any ...
3
votes
3answers
111 views
MVVM Pattern in a templated form
In my silverlight application the user can create multiple templates of a form. Depending upon the template selected, the form would display a set of views in a particular order. Furthermore, some of ...
3
votes
2answers
7k views
Pass data to Child Window in Silverlight 4 using MVVM
I have a datagrid with master detail implementation as follows:
<data:DataGrid x:Name="dgData" Width="600" ItemsSource="{Binding Path=ItemCollection}"
...
3
votes
2answers
1k views
How do I get the active ChildWindow of an application?
I have this problem: I have an handler to the mainWindow of a certain application, and I want to simulate a keypress on that application...
I'm using sendMessage/postMessage api calls to do this. The ...
2
votes
2answers
78 views
Place ChildWindow Control in Center of Screen
I use separated usercontrol to create my application toolbar in WPF.
I want to open WPF extended ChildWindow when user click on one of toolbar buttons.
I should place ChildWindow in center of screen ...
2
votes
1answer
225 views
How to create child layered alpha-transparent window?
I am trying to create transparent child window.
procedure TForm1.BtnGoClick(Sender: TObject);
var
bmp:TBitmap;
BitmapPos: TPoint;
BitmapSize: TSIZE;
BlendFunction: _BLENDFUNCTION;
exStyle: ...
2
votes
1answer
383 views
Silverlight ChildWindow do not close properly on callback
I have a simple ChildWindow containing only two elements, textblock and a progress bar to simulate a waiting screen. That ChildWindow is started before calling async WCF method and closed on the ...
2
votes
3answers
594 views
WPF window position
I have asked a question before about creating a child window here ... Now when I open child window, it doesn`t open centered to the parent window. How can I set it to open centered to the parent ...
2
votes
1answer
485 views
C# WPF child window (about window)
I have an application on C#/WPF that I`m developing ... I have a btn named About which should open a new window that contains details about the application or whatever I will put in it.
When I click ...
2
votes
2answers
610 views
Child window Problem in C++
I'm having a problem in my program whenever I close the child window, the main window also exits.
I am a newbie in this programming.
The Correct Code:
/**
@file MainWindow.cpp
@author ...
2
votes
2answers
1k views
2
votes
2answers
290 views
C# Find selected control on any window
What would be the best way to go about finding what the active control is on any window? I am going to be sending the WM_PASTE message to it. ChildWindowFromPoint has not been returning a fair few of ...
2
votes
3answers
2k views
Removing the default MDI menu of a MDI Container form when a MDI Child is maximized
I am working on a .NET C# application that has a main Form which is MDI container. When the user maximizes a MDI child, Windows draws a control strip right under the title bar of the container Form ...
1
vote
3answers
68 views
I get an error about using a different thread?
When I click my ActionButton, there is a timer that starts and after 3 seconds, it must fire a methode to change the current ContentPage to the another page.
But i get a message : The calling thread ...
1
vote
1answer
58 views
Styling the title of a ChildWindow
I'm new-ish to C# and wpf. I have a ChildWindow whose title gets set from outside the class. I need the title to be shortened with ellipsis on the end if it is too long. I accomplished by doing this ...
1
vote
1answer
65 views
Get sender (button) from child window
I was generate the button through code. and with the button i got one method to call up the child window in silverlight.
private void btnXX_Click(object sender, RoutedEventArgs e)
{
...
1
vote
1answer
54 views
window.closed not working for IE
I try to close child popup from a button on parent window. Below is the function used for it.But it doesn't work fine with IE, it works fine with firefox. Sometimes child popup gets closed on first ...
1
vote
2answers
575 views
Use MVVM Light View Model Locator with Child Window in Silverlight 4
I want to use the View Model Locator in a Child Window.
Problem is this don't work:
<controls:ChildWindow x:Class="Views.PopupViews.AddAlert"
...
1
vote
2answers
123 views
WPF equivalent of Form.ShowDialog(IWin32Window)
In WPF we have Window.ShowDialog() which allows showing a modal dialog box.
In WinForms there is similar functionality but it also has an overload Form.ShowDialog(IWin32Window) which allows an ...
1
vote
1answer
181 views
Can I remove a ChildWindow from the VisualTree and put it back in to achieve FullScreen?
I have a popup that is a ChildWindow. Inside that popup I have a UserControl (MediaPreviewView) that has a MediaElement and some buttons to control the video. My requirements state that I need a ...
1
vote
2answers
178 views
Is it possible to get rid of the ChildWindow animation is Silverlight?
In my opinion, the animation is too long and too "jumpy" - I'd like to remove it or make it more subtle. Possible?
1
vote
1answer
264 views
Win32 Capturing child Window messages in parent window
In my Win32 application, a child window is created by a third party SDK.The Window creation process is transparent and I cannot associate a WndProc method with the child Window. I want to be able to ...
1
vote
1answer
360 views
ShowDialog a RadWindow with MVVMLight
I have a functional MVVM patterned SL app with a RadWindow (essentially a ChildWindow), that I would like to remove the code-behind in my view that shows the window using its ShowDialog. Both the ...
1
vote
1answer
594 views
Silverlight MVVM pattern with Child Window and Shared Data
I have a ViewModel for a "parent" control which displays two grids. The first grid has parent information and the second grid displays the related children for the selected parent.
This works fine ...
1
vote
0answers
225 views
Main Window is not resizable when Child Windows is opened in Silverlight?
I am wondering is someone has a solution for it. Main Window is resizable. It is getting scrollbars when is resized to be too small. The problem is that when I open Child Window and resize the Main ...
1
vote
2answers
742 views
Silverlight Childwindow + Implicit Style not working
Using Silverlight 4, we can't seem to get Childwindows' to show our implicit styles. Every other control on our app takes the implicit styles but the childwindow (even the controls on the childwindow ...
1
vote
2answers
523 views
Close childwindows in silverlight with a click outside of it
How can I close a childwindow when I click outside of it?
1
vote
1answer
458 views
How to pass the value of datagrid’s cell of the selected row to a texblock in ChildWindow in Silverlight?
I generate datagrid content from the list. I need to be able to pass the value of the ‘Name’ cell of the selected row in the datagrid to a texblock of the child window. The child windows is launched ...
1
vote
1answer
377 views
Silverlight ChildWindow does not reposition correctly
I am using the ChildWindow (Silverlight) which also contains some expander controls. In one case, when the expander control expands, the bottom of the child window expands down out the screen on the ...
1
vote
1answer
236 views
Emulate mouse events with PostMessage without gaining focus (WINAPI)
I emulated the mouse events using PostMessage and tested on the notepad application.
I don't want to gain focus of the notepad application by sending mouse events.
The events are received only if I ...
1
vote
3answers
676 views
Silverlight Prism + MDI windows
I'm trying to figure out how to make a customizable stock trading platform with Prism and MVVM.
Trading platforms normally look something like this:
...
1
vote
1answer
338 views
enumerating child windows
A couple of weeks ago someone here helped me out with writing a class that enumerates all main windows.
Today I tried to modify that class in order to enumerate all child windows of a specific parent ...
1
vote
1answer
629 views
Silverlight ChildWindow not disposed using MEF and MVVM
I'm not sure if what I'm experiencing is the same as here: Silverlight ChildWindow Memory Leak
but...:
I've got a Silverlight ChildWindow with 3 radio buttons in the same group with IsChecked all ...
1
vote
3answers
100 views
Duplicating Child Window problem
In my application I have a Submit button that does this:
private void Submit_button_Click(object sender, RoutedEventArgs e)
{
string variable = variable_textBox.Text;
if (variable.Length ...
1
vote
0answers
674 views
disable closing child window in silverlight 4 after you press the hotkey CTRL + SHIFT + F4
I am creating a child window 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 login phase. I can ...
1
vote
1answer
287 views
How do you display a custom message box from the selectionchanged event of the silverlight datagrid?
I want to display a custom confirmation message box (ChildWindow) when the user selects a row in a DataGrid in Silverlight. The message box simply has 2 buttons, a yes and a no. When the user clicks ...
1
vote
1answer
279 views
Usability: Child windows in Silverlight LOB applications
When authoring a Silverlight LOB application (think Outlook) with Child windows, the child windows are are mere 'fakes'. They don't get their own taskbar item, hence CTRL-TAB does not work, only modal ...
1
vote
1answer
276 views
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 ...
1
vote
0answers
391 views
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.
1
vote
1answer
472 views
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 ...
1
vote
1answer
286 views
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 | ...
1
vote
2answers
1k views
How to hide the border around child window
I have a child Window , and I am displaying it from the code behind as below:
ChildPhotoViewer PhotoViewer = new ChildPhotoViewer();
PhotoViewer.DataContext = selectedPhoto;
...
1
vote
2answers
523 views
Is there a way to synchronize Silverlight Child Window (make it like MessageBox)?
ChildWindow1 wnd1 = new ChildWindow1();
ChildWindow2 wnd2 = new ChildWindow2();
wnd1.Show();
//**Is there a way to pause thread here until wnd1 is closed???**
...