Fixed a bug for root nodes with namespace prefix
This commit is contained in:
Родитель
540b70b5c8
Коммит
415e2f0785
|
@ -285,7 +285,7 @@ namespace ICSharpCode.WpfDesign.XamlDom
|
|||
|
||||
string prefix = _xmlDoc.DocumentElement.GetPrefixOfNamespace(@namespace);
|
||||
|
||||
if (_xmlDoc.DocumentElement.NamespaceURI == @namespace && _xmlDoc.Prefix == String.Empty)
|
||||
if (_xmlDoc.DocumentElement.NamespaceURI == @namespace && _xmlDoc.DocumentElement.Prefix == String.Empty)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче