AvalonStudio.OldToolViewModel.OldToolViewModel C# (CSharp) Method

OldToolViewModel() public method

public OldToolViewModel ( string contentId, string name ) : System
contentId string
name string
return System
		public OldToolViewModel(string contentId, string name) : base(contentId)
		{
			Name = name;
			ToolTitle = name;

			CloseCommand = ReactiveCommand.Create();
			CloseCommand.Subscribe(o =>
			{
				// Workspace.Instance.Tools.Remove (this);
			});
		}
OldToolViewModel