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. using System.Diagnostics;
  10. namespace UsingDocumentList
  11. {
  12. public partial class MainForm : Form
  13. {
  14. public MainForm()
  15. {
  16. InitializeComponent();
  17. }
  18. private void m_documentList_DocumentActivated(object sender, DocumentListEventArgs e)
  19. {
  20. m_statusBar.Text = String.Format("'{0}' has been activated.", e.Path);
  21. Process.Start(e.Path, null);
  22. }
  23. private void m_documentList_DeletingDocument(object sender, DocumentListEventArgs e)
  24. {
  25. m_statusBar.Text = String.Format("'{0}' has been deleted.", e.Path);
  26. }
  27. private void m_documentList_SelectedDirectoryChanged(object sender, EventArgs e)
  28. {
  29. m_statusBar.Text = String.Format("Changed directory to: '{0}'.", m_documentList.SelectedDirectory);
  30. }
  31. }
  32. }