The option 1 for valid XAML namespaces had an issue in the examples stating xmlns:... again inside the string. This fixes it
This commit is contained in:
Mrxx99 2022-09-04 22:43:45 +02:00 коммит произвёл GitHub
Родитель 217f68bb07
Коммит 2f075363b1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -45,8 +45,8 @@ xmlns:myAlias="MyNamespaceDefinition"
**Option 1**: Using the `clr-namespace`-syntax:
```xml
xmlns:myAlias1="xmlns:my1="clr-namespace:My.NameSpace"
xmlns:myAlias2="xmlns:my1="clr-namespace:My.NameSpace.InOtherAssembly;assembly=TheOtherAssembly"
xmlns:myAlias1="clr-namespace:My.NameSpace"
xmlns:myAlias2="clr-namespace:My.NameSpace.InOtherAssembly;assembly=TheOtherAssembly"
```
{% hint style="info" %} `My.NameSpace` is the namespace in `C#` you want to use {% endhint %}