How to make the ChildWindow Fullscreen? - wpf

I have a ChildWindow , in which I have a Video Playing in Expression MediaPlayer.
When I press the FullScreen Button then the whole Application switch to FullScreen Mode, but I want only the Child Window to be Full Screen.

A child window can't be made fullscreen. Its a security restriction.

To do this make you form property : MDIChile = true
so you can see your full screen window into you parent window.
got it.

Related

How to remove the hovering navigation menu while in Google Data Studio Presentation mode?

How do I control if the hovering navigation menu appears when the data studio dashboard that I have created enters presentation mode? There are already in-dashboard controls and this menu gets in the way, more than it helps.
Unfortunately, there is no way to hide this control box. However, if they bother you, I think you do not really need presentation mode.
You can mimic the presentation mode, hiding Header, Navigation Bar and setting the window to full screen.
In File > Theme And Layout > Layout > View Mode:
Select "Initially hidden" for Header visibility;
Select "Hidden" for Navigation type;
Select "Fit to width" for Display mode;
Un-select "Has margin".
Then, just set your browser to fullscreen during visualization (F11 on Windows, or just expand the window in MacOS). This way you get the same result, without the presentation controls.

how to make closing animation for popup WPF

I can use PopupAnimation property like Fade.(PopupAnimation="Fade")
but I can't use fade-out animation.
I want to make animation when popup open and close.

Popup's draggable Area of Movement Limited

In my application I am invoking a PopUp by
Popup pop = new Popup;
then i add this:: pop.child(page); where "page" is the instance of a XAML page which is of type ChildWindow.
Now when the popup shows up on my MainPage, it becomes Non-Modal just like I want it to be!!
But the problem is, the popup window is not draggable through out the Mainpage. I know that the popup appears within the Boundaries of a Silverlight control hosted in a browser. And It's not a true window. But still my popup is not draggable within its boundaries..
Am i missing some declarations which define the draggable region of a popup control OR is it the ChildWindow which needs to be configured ??
In order to solve the issue I had to remove the fixed Height and Width attributes of the ChildWindow and used MaxHeight and MaxWidth values and set their values to 4000. Now my ChildWindow inside the popup is perfectly draggable throughout the silverlight application.

How to use a modal window in titanium?

i have a serious problem here. i'm trying to use a modal window in my application. till now i used just a window over the parent window. but this caused a problem of not disabling the background.
here is my window:
the problem in the above pic is the background is not being disabled. if i use the modal window it occupies the whole view, which i dont want.
What i'm need of:
i need a view something like this alert view, which wen shown the background goes to disable mode.
any help is highly appreciated..
thank you...
Unfortunately You can not use the modal window as dialog box, but you can do a small trick and make your window look like a modal window.
Create a view and disable the click event on it. Add your dialog window to this view and show this view on screen.
var disableView = Titanium.UI.createView({
height:480,
width:320,
top:0,
backgroundColor:'#000',
opacity:0.7,
touchEnabled:true
});
disableView.add( yourWindow);

How to make a window modal to Page in WPF?

I know how to make a Window Modal to a Window
I have a Page as my main window. I want to open a window and make it Modal to the Page. Is it possible? Does Page class have API's to support my requirement? If yes a sample illustration will be nice!!
This is very simple (unless I've misunderstood your issue)
Window win = new MainWindow();
win.ShowDialog();
These links may help:
http://social.msdn.microsoft.com/Forums/en/windowsgeneraldevelopmentissues/thread/3c3e1a4a-6b26-435c-b59b-2e2f1766f52d
Link
​​​

Resources