R
Rick
I've added an input panel to a blank form. There is no code involved
in the form. If I open up another application, such as Contacts and
show the input panel. Then switch back to my form, the input panel is
shown there too. I need to be make sure input panel doesn't show on
my form when it's shown on another application. To further
illustrate, see the following URL for a 30 second recording of what
I'm seeing. Please note that showing or hiding the SIP on my form
does not affect the status of the SIP the other application.
http://www.agiletechnicalsolutions.com/sip.wmv
The below code is the code behind for the form. You'll see that there
is nothing there.
The question is, how do I scope the SIP behavior to my app, not
allowing other apps to change the SIP status on MY app?
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private bool SipEnabled = false;
private void Form1_Activated(object sender, EventArgs e)
{
}
private void Form1_GotFocus(object sender, EventArgs e)
{
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
}
private void inputPanel1_EnabledChanged(object sender, EventArgs e)
{
}
private void Form1_Deactivate(object sender, EventArgs e)
{
}
private void Form1_LostFocus(object sender, EventArgs e)
{
}
private void Form1_EnabledChanged(object sender, EventArgs e)
{
}
private void Form1_Closing(object sender, CancelEventArgs e)
{
}
private void Form1_Closed(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
in the form. If I open up another application, such as Contacts and
show the input panel. Then switch back to my form, the input panel is
shown there too. I need to be make sure input panel doesn't show on
my form when it's shown on another application. To further
illustrate, see the following URL for a 30 second recording of what
I'm seeing. Please note that showing or hiding the SIP on my form
does not affect the status of the SIP the other application.
http://www.agiletechnicalsolutions.com/sip.wmv
The below code is the code behind for the form. You'll see that there
is nothing there.
The question is, how do I scope the SIP behavior to my app, not
allowing other apps to change the SIP status on MY app?
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private bool SipEnabled = false;
private void Form1_Activated(object sender, EventArgs e)
{
}
private void Form1_GotFocus(object sender, EventArgs e)
{
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
}
private void inputPanel1_EnabledChanged(object sender, EventArgs e)
{
}
private void Form1_Deactivate(object sender, EventArgs e)
{
}
private void Form1_LostFocus(object sender, EventArgs e)
{
}
private void Form1_EnabledChanged(object sender, EventArgs e)
{
}
private void Form1_Closing(object sender, CancelEventArgs e)
{
}
private void Form1_Closed(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
}