0

I want to make a on-screen keyboard by WPF application. I want to make my window of app to be inactive. When I use Form application development I use this code

protected override CreateParams CreateParams
{
    get
    {
        CreateParams param = base.CreateParams;
        param.ExStyle |= 0x08000000;
        return param;
    }   
}

but in WPF I don't know how to do that.

Sven-Michael Stübe
  • 14,560
  • 4
  • 52
  • 103
  • what do you mean by inactive? not focused? – d.moncada Mar 14 '16 at 21:13
  • I mean that when i am clicking on buttons the program to be inactive to can add text to other program. For Example when i want to add text to any text box in any program when i open the on-screen keyboard to add text by clicking buttons – Kastra12 Mar 15 '16 at 14:14
  • I want to make on-screen keyboard and for that i want to set my window inactive when use it because other program has the input type. – Kastra12 Mar 17 '16 at 16:25

0 Answers0