Moved icons to separate ResourceDictionary

Changed block tooltip to hide when the block is expanded
This commit is contained in:
Ben
2015-06-06 15:50:20 +01:00
parent 3c643eb07b
commit 301b24d324
17 changed files with 87 additions and 201 deletions

View File

@@ -1,5 +1,7 @@
using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Reflection;
using System.Windows.Forms;
using Castle.Core;
using Filtration.Models;
@@ -63,6 +65,16 @@ namespace Filtration.ViewModels
get { return _scriptViewModels; }
}
public string WindowTitle
{
get
{
var assembly = Assembly.GetExecutingAssembly();
var fvi = FileVersionInfo.GetVersionInfo(assembly.Location);
return "Filtration v" + fvi.FileMajorPart + "." + fvi.FileMinorPart;
}
}
[DoNotWire]
public ILootFilterScriptViewModel CurrentScriptViewModel
{