mirror of https://github.com/AMT-Cheif/Stylet.git
WindowManager sets window title if it's the same as the window name
This commit is contained in:
parent
b11a9dabff
commit
2a6350ad73
|
@ -130,8 +130,9 @@ namespace Stylet
|
|||
throw e;
|
||||
}
|
||||
|
||||
// Only set this it hasn't been set / bound to anything
|
||||
var haveDisplayName = viewModel as IHaveDisplayName;
|
||||
if (haveDisplayName != null && String.IsNullOrEmpty(window.Title) && BindingOperations.GetBindingBase(window, Window.TitleProperty) == null)
|
||||
if (haveDisplayName != null && (String.IsNullOrEmpty(window.Title) || window.Title == view.GetType().Name) && BindingOperations.GetBindingBase(window, Window.TitleProperty) == null)
|
||||
{
|
||||
var binding = new Binding("DisplayName") { Mode = BindingMode.TwoWay };
|
||||
window.SetBinding(Window.TitleProperty, binding);
|
||||
|
|
|
@ -136,6 +136,20 @@ namespace StyletUnitTests
|
|||
Assert.AreEqual("Test", e.ParentBinding.Path.Path);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void CreateWindowDoesSetUpTitleBindingIfTitleIsNameOfTheClass()
|
||||
{
|
||||
var model = new Screen();
|
||||
var window = new Window();
|
||||
window.Title = "Window";
|
||||
this.viewManager.Setup(x => x.CreateAndBindViewForModelIfNecessary(model)).Returns(window);
|
||||
|
||||
this.windowManager.CreateWindow(model, false);
|
||||
|
||||
var e = window.GetBindingExpression(Window.TitleProperty);
|
||||
Assert.AreEqual("DisplayName", e.ParentBinding.Path.Path);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void CreateWindowActivatesViewModel()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue