You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
675 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace ICSharpCode.ILSpy.ViewModels
{
internal enum LegacyToolPaneLocation
{
Top,
Bottom
}
internal class LegacyToolPaneModel : ToolPaneModel
{
public LegacyToolPaneModel(string title, object content, LegacyToolPaneLocation location)
{
this.Title = title;
this.Content = content;
this.IsCloseable = true;
this.Location = location;
}
public object Content { get; }
public override DataTemplate Template => throw new NotSupportedException();
public LegacyToolPaneLocation Location { get; }
}
}