pascalabcnet/WeifenLuo/DockSample/DummySolutionExplorer.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

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;
}
}
}