Questions tagged [childwindow]
235 questions
0
votes
1 answer
Vertical scrollbar is missing in mozilla firefox open child window
I have a sample fiddle here where I have a print preview page in a child window which is drawn as,
myWindow=window.open('','','width=800,height=600','scrollbars=yes');
myWindow.innerWidth = screen.width;
myWindow.innerHeight =…

mpsbhat
- 2,733
- 12
- 49
- 105
0
votes
1 answer
How to use childwindow for login page in current situation
I am silverlight beginner and under a situation where i had to Pop up a Login Page childwindow at startup (first thing must appear on launching program must be login childwindow pop up). And when password entered correctly then displaying the UI…

Sss
- 1,519
- 8
- 37
- 67
0
votes
1 answer
How to popup login form at start up to take password (it do not popup in constructor of MainPage)
I am working in silverlight and i have created a childwindow in which i have user name and passwrord.
private void OKButton_Click(object sender, RoutedEventArgs e)
{
if (txtUsrname.Text == "Username" && txtPassword.Password == "Password")
…

Sss
- 1,519
- 8
- 37
- 67
0
votes
1 answer
Silverlight 5: Create an overlay above child window
I want to add a custom loading indicator when a button on child window is clicked. The loading overlay should appear above the whole screen. For this, I have created an overlay in rootvisual page which is hidden initially. When a button on child…

Tejas Sutar
- 747
- 2
- 11
- 33
0
votes
1 answer
Value in MainWindow returned from childWindow
How do I send a value from a ChildWindow to a MainWindow once the ChildWindow is closed?.
When the "closeButton" in ChildWindow is pressed, ChildWindow sends the calculated value to MainWindow.
I did a test like this:
def closeEvent(self, evnt):
…

codeKiller
- 5,493
- 17
- 60
- 115
0
votes
2 answers
How to add floating window to my silver light dynamically?
I have list of Activity in my Database which shows in treeview nodes in Ajax, after clicking each nodes it calles different webpart and add to my Ajax screen App.
Want to know is it possible to do the same thing with silverlight floating…

user929342
- 11
- 1
- 1
0
votes
1 answer
Best option for unknown number of child windows in ASP.NET?
I have to migrate some forms made in Silverlight to ASP.NET. This forms include a lot of child windows that, at the same time, may contain other several child windows as well. This child windows should be able to communicate to their parent…

danielrozo
- 1,442
- 1
- 10
- 22
0
votes
2 answers
Close xceed Child Window on escape button click
I'm using xceed wpf Toolkit.
In that I'm using ChildWindow. I need to close the opened Child window on escape key press. Here is the code
//My…

Krishna Thota
- 6,646
- 14
- 54
- 79
0
votes
1 answer
How to pass main page method to Childwindow Silverlight?
This has been my issue for long time,i have a method inside the main page to open application,
i need to invoke it when the user control is clicked. so when creating a usercontrol i need to pass this method and call it inside the usercontrol click…
user2820758
0
votes
1 answer
ChildWindow Breakpoints
I have a project in Silverlight with a ChildWindow, this ChildWindow has various breakpoints, but When I run my application, the code does not stop for that lines.
Can someone help me? I don't see which is the problem, thanks.

Vmax
- 119
- 6
0
votes
1 answer
Silverlight's child windows's button click delegated event is not being called in parent page's code behind
I am creating a Silverlight application. In which I have taken a ChildWindow and in this ChildWindow taken a grid and OK. Now I want a selected row of grid when ok button is clicked. And hence I have created a Event delegate for button click. But…

Manish Pandey
- 175
- 2
- 13
0
votes
0 answers
Textured Quad not rendered
Correct me if I am wrong, but isn't WS_CLIPCHILDREN supposed to stop parent window from drawing over its children window? I have a parent window with two child windows, yet whenever I move the parent window, strangely enough one of the child's…

null
- 63
- 6
0
votes
0 answers
Qt MDI application whose windows can occupy a limited size only
I am writing a Qt MDI application, using this MDI example as a starting point.
The example works as it should, of course. My program instead has this issue:
When I resize a child window, this gets resized, but when its size is above a certain…

Pietro
- 12,086
- 26
- 100
- 193
0
votes
2 answers
Error on setting parent
I've got an old Delphi 7 application that, after some changes, gives the message "Access violation ... in 'ntdll.dll' ... " The message is repeated 4 times, and probably means that Windows is unable to paint something: then after that everything…

david
- 2,435
- 1
- 21
- 33
0
votes
1 answer
Check Child Window Focus in Javascript
I want to know if the user has focus on the http or https.
So everytime the user clicks on one of the childwindows - i want to know which one is "active".
I checked the W3C. The Page Visibility API
Is there a way to detect if a browser window is not…

Sven Delueg
- 1,001
- 11
- 23