Browse Source

Merge branch 'DrawLineOnCanvas' of https://github.com/jogibear9988/SharpDevelop into DrawLineOnCanvas

pull/637/head
jkuehner 11 years ago
parent
commit
ba36f16f10
  1. 7
      .gitignore
  2. 6
      src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/XamlProperty.cs

7
.gitignore vendored

@ -23,3 +23,10 @@ bin/ @@ -23,3 +23,10 @@ bin/
/src/AddIns/Misc/PackageManagement/Packages/AvalonEdit/lib
/packages/
/src/Tools/ResGet/*.log
*.ide/
*.sdsettings
*.DotSettings.user
*.suo
.DS_Store

6
src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/XamlProperty.cs

@ -203,8 +203,10 @@ namespace ICSharpCode.WpfDesign.XamlDom @@ -203,8 +203,10 @@ namespace ICSharpCode.WpfDesign.XamlDom
ResetInternal();
propertyValue = value;
propertyValue.ParentProperty = this;
propertyValue.AddNodeTo(this);
if (propertyValue != null) {
propertyValue.ParentProperty = this;
propertyValue.AddNodeTo(this);
}
UpdateValueOnInstance();
ParentObject.OnPropertyChanged(this);

Loading…
Cancel
Save