Expression > Forums Home > Expression Studio Forums > Expression Blend + SketchFlow > How to make a WPF SketchFlow project into Full screen?
Ask a questionAsk a question
 

Proposed AnswerHow to make a WPF SketchFlow project into Full screen?

  • Thursday, November 05, 2009 11:40 PMU_luke Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Please, Anyone knows how to make a WPF SketchFlow project into Full screen?
    This project is not using for a web site.
    I want to use the project as an user interface application on a touch_screen monitor.
    So I would like it is displayed into a full screen style.
    How to? please.
    Thanks a lot advance.

    Luke


All Replies

  • Wednesday, November 18, 2009 6:32 AMD. Matsumoto Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Proposed AnswerHas Code
    Just change it in the code-behind!  After the call to InitializeComponent(), add a couple more lines like these:

    this.Width = System.Windows.SystemParameters.PrimaryScreenWidth;
    this.Height = System.Windows.SystemParameters.PrimaryScreenHeight
    • Proposed As Answer byD. Matsumoto Wednesday, November 18, 2009 6:32 AM
    •  
  • 5 hours 30 minutes agoU_luke Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Thank you very much for your help.
    But I think this only works for WPF type, not WPF + SketchFlow.
    Am I wrong?
    Thanks again
    Luke