MainForm.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:1k
源码类别:

Windows Mobile

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using Microsoft.WindowsCE.Forms;
  9. namespace ControllingSIP
  10. {
  11. public partial class MainForm : Form
  12. {
  13. InputPanel m_sip;
  14. public MainForm()
  15. {
  16. InitializeComponent();
  17. m_sip = new InputPanel();
  18. m_sip.EnabledChanged += new EventHandler(m_sip_EnabledChanged);
  19. foreach(InputMethod im in m_sip.InputMethods)
  20. m_cmbInputMethods.Items.Add(im.Name);
  21. }
  22. void m_sip_EnabledChanged(object sender, EventArgs e)
  23. {
  24. m_chkOpenSIP.Checked = m_sip.Enabled;
  25. }
  26. private void m_chkOpenSIP_CheckStateChanged(object sender, EventArgs e)
  27. {
  28. m_sip.Enabled = m_chkOpenSIP.Checked;
  29. }
  30. private void m_cmbInputMethods_SelectedIndexChanged(object sender, EventArgs e)
  31. {
  32. m_sip.CurrentInputMethod = m_sip.InputMethods[m_cmbInputMethods.SelectedIndex];
  33. }
  34. }
  35. }