DummySolutionExplorer.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- using WeifenLuo.WinFormsUI.Docking;
- namespace DockSample
- {
- public partial class DummySolutionExplorer : ToolWindow
- {
- public DummySolutionExplorer()
- {
- InitializeComponent();
- }
- protected override void OnRightToLeftLayoutChanged(EventArgs e)
- {
- treeView1.RightToLeftLayout = RightToLeftLayout;
- }
- private void DummySolutionExplorer_Load(object sender, EventArgs e)
- {
- }
- }
- }