Click here to Skip to main content
15,886,799 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: How To Host Silver Light User Controls to asp.net Page Contaning webParts Pin
Not Active7-Jul-09 2:32
mentorNot Active7-Jul-09 2:32 
Questionzoom in WPF- can it wor on a grid as well? Pin
TGiril6-Jul-09 22:44
TGiril6-Jul-09 22:44 
AnswerRe: zoom in WPF- can it wor on a grid as well? Pin
Christian Graus7-Jul-09 1:11
protectorChristian Graus7-Jul-09 1:11 
AnswerRe: zoom in WPF- can it wor on a grid as well? Pin
Pete O'Hanlon7-Jul-09 2:25
mvePete O'Hanlon7-Jul-09 2:25 
QuestionExplorer Control Pin
#realJSOP6-Jul-09 2:33
mve#realJSOP6-Jul-09 2:33 
AnswerRe: Explorer Control Pin
Pete O'Hanlon6-Jul-09 3:21
mvePete O'Hanlon6-Jul-09 3:21 
GeneralRe: Explorer Control Pin
#realJSOP6-Jul-09 5:26
mve#realJSOP6-Jul-09 5:26 
QuestionFull Screen problem with Media Element Pin
pavanip6-Jul-09 1:32
pavanip6-Jul-09 1:32 
Hi,

I have a Silverlight application in that one page i am having 1-8 videos will present.I placed each media element in seperate canvas. I want to fullscreen one particular media element with outer canvas.

For Full screen individula video I have written the following code

private
void FullscreenChange(object sender, RoutedEventArgs e)
{
if (SLHost.Content.IsFullScreen)
{
ToolTipService.SetToolTip(fullscreen, "Full Screen");
ms1.ScaleX = c;
ms1.ScaleY = d;
SLHost.Content.IsFullScreen = false;
}
else
{
ToolTipService.SetToolTip(fullscreen, "Resize");
ms1.ScaleX = ms1.ScaleX * 5.90;
ms1.ScaleY = ms1.ScaleY * 4.10;
SLHost.Content.IsFullScreen = true;
isFullScreen = true;
flag = false;
}
}

But here I am using same full screen button to resize video.If I use like this its working properly.But I dont want to use same button for Resize if I press Escape it will go to normal stage but its not working like that if I press Escape button it will go to noraml state but the video size is not reducing to original it is in bigger size only.Can you please guide me what is the mistake i have done.If I press Escape button it has to go to normal state and also it has to reduce the video size like previous size.



Thanks in Advance

Pavani
AnswerRe: Full Screen problem with Media Element Pin
Viral Upadhyay6-Jul-09 2:33
Viral Upadhyay6-Jul-09 2:33 
QuestionWPF newbe needing some helpfull advice Pin
Ian Durward5-Jul-09 18:40
Ian Durward5-Jul-09 18:40 
AnswerRe: WPF newbe needing some helpfull advice Pin
User 2710096-Jul-09 1:51
User 2710096-Jul-09 1:51 
AnswerRe: WPF newbe needing some helpfull advice Pin
RugbyLeague6-Jul-09 4:28
RugbyLeague6-Jul-09 4:28 
GeneralRe: WPF newbe needing some helpfull advice Pin
Ian Durward6-Jul-09 19:33
Ian Durward6-Jul-09 19:33 
QuestionWCF How to specify max and min value for a data member? [modified] Pin
cateyes995-Jul-09 18:17
cateyes995-Jul-09 18:17 
AnswerRe: WCF How to specify max and min value for a data member? Pin
User 2710096-Jul-09 1:49
User 2710096-Jul-09 1:49 
AnswerRe: WCF How to specify max and min value for a data member? Pin
Pete O'Hanlon6-Jul-09 1:52
mvePete O'Hanlon6-Jul-09 1:52 
GeneralRe: WCF How to specify max and min value for a data member? Pin
cateyes996-Jul-09 16:00
cateyes996-Jul-09 16:00 
AnswerRe: WCF How to specify max and min value for a data member? Pin
BrowniePoints6-Jul-09 5:12
BrowniePoints6-Jul-09 5:12 
GeneralRe: WCF How to specify max and min value for a data member? Pin
cateyes996-Jul-09 16:53
cateyes996-Jul-09 16:53 
QuestionDoes MediaPlayer support AAC format sound files? Pin
fjparisIII5-Jul-09 13:40
fjparisIII5-Jul-09 13:40 
AnswerRe: Does WPF support AAC format sound files? Pin
Christian Graus5-Jul-09 14:16
protectorChristian Graus5-Jul-09 14:16 
GeneralRe: Does MediaPlayer support AAC format sound files? [modified] Pin
fjparisIII5-Jul-09 14:59
fjparisIII5-Jul-09 14:59 
GeneralRe: Does MediaPlayer support AAC format sound files? Pin
Christian Graus6-Jul-09 9:43
protectorChristian Graus6-Jul-09 9:43 
GeneralRe: Does WPF support AAC format sound files? Pin
fjparisIII15-Jul-09 8:52
fjparisIII15-Jul-09 8:52 
AnswerRe: Does WPF support AAC format sound files? Pin
Pete O'Hanlon5-Jul-09 23:12
mvePete O'Hanlon5-Jul-09 23:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.