24 lines
546 B
C#
24 lines
546 B
C#
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;
|
|
}
|
|
}
|
|
} |