DummySolutionExplorer.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:1k
源码类别:

C#编程

开发平台:

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 WeifenLuo.WinFormsUI.Docking;
  9. namespace DockSample
  10. {
  11.     public partial class DummySolutionExplorer : ToolWindow
  12.     {
  13.         public DummySolutionExplorer()
  14.         {
  15.             InitializeComponent();
  16.         }
  17.         protected override void OnRightToLeftLayoutChanged(EventArgs e)
  18.         {
  19.             treeView1.RightToLeftLayout = RightToLeftLayout;
  20.         }
  21.         private void DummySolutionExplorer_Load(object sender, EventArgs e)
  22.         {
  23.         }
  24.     }
  25. }