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.
95 lines
3.5 KiB
95 lines
3.5 KiB
// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team |
|
// |
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this |
|
// software and associated documentation files (the "Software"), to deal in the Software |
|
// without restriction, including without limitation the rights to use, copy, modify, merge, |
|
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
|
// to whom the Software is furnished to do so, subject to the following conditions: |
|
// |
|
// The above copyright notice and this permission notice shall be included in all copies or |
|
// substantial portions of the Software. |
|
// |
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
|
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
|
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
|
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
// DEALINGS IN THE SOFTWARE. |
|
|
|
using System; |
|
using System.Diagnostics; |
|
using System.Windows; |
|
using System.Windows.Markup; |
|
|
|
namespace ICSharpCode.WpfDesign.XamlDom |
|
{ |
|
/// <summary> |
|
/// Static methods to help with <see cref="System.Windows.Markup.INameScope"/> operations on Xaml elements. |
|
/// </summary> |
|
public static class NameScopeHelper |
|
{ |
|
/// <summary> |
|
/// Finds the XAML namescope for the specified object and uses it to unregister the old name and then register the new name. |
|
/// </summary> |
|
/// <param name="namedObject">The object where the name was changed.</param> |
|
/// <param name="oldName">The old name.</param> |
|
/// <param name="newName">The new name.</param> |
|
internal static void NameChanged(XamlObject namedObject, string oldName, string newName) |
|
{ |
|
var obj = namedObject; |
|
while (obj != null) { |
|
var nameScope = GetNameScopeFromObject(obj.Instance); |
|
if (nameScope != null) { |
|
if (oldName != null) { |
|
try { |
|
nameScope.UnregisterName(oldName); |
|
} catch (Exception x) { |
|
Debug.WriteLine(x.Message); |
|
} |
|
} |
|
if (newName != null) { |
|
nameScope.RegisterName(newName, namedObject.Instance); |
|
|
|
try{ |
|
var prp = namedObject.ElementType.GetProperty(namedObject.RuntimeNameProperty); |
|
if (prp != null) |
|
prp.SetValue(namedObject.Instance, newName, null); |
|
} catch (Exception x) { |
|
Debug.WriteLine(x.Message); |
|
} |
|
} |
|
break; |
|
} |
|
obj = obj.ParentObject; |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// Gets the XAML namescope for the specified object. |
|
/// </summary> |
|
/// <param name="obj">The object to get the XAML namescope for.</param> |
|
/// <returns>A XAML namescope, as an <see cref="INameScope"/> instance.</returns> |
|
public static INameScope GetNameScopeFromObject(object obj) |
|
{ |
|
var nameScope = obj as INameScope; |
|
if (nameScope == null) { |
|
var depObj = obj as DependencyObject; |
|
if (depObj != null) |
|
nameScope = NameScope.GetNameScope(depObj); |
|
} |
|
|
|
return nameScope; |
|
} |
|
|
|
/// <summary> |
|
/// Clears the <see cref="NameScope.NameScopeProperty"/> if the object is a <see cref="DependencyObject"/>. |
|
/// </summary> |
|
/// <param name="obj">The object to clear the <see cref="NameScope.NameScopeProperty"/> on.</param> |
|
public static void ClearNameScopeProperty(object obj) |
|
{ |
|
var depObj = obj as DependencyObject; |
|
if (depObj != null) |
|
depObj.ClearValue(NameScope.NameScopeProperty); |
|
} |
|
} |
|
}
|
|
|