Browse Source
* Recognize nodes with generic parameters * Move generic arguments to ResolvedName and add test Co-authored-by: デリャザ <デリャザ@DESKTOP-OBAKE1V> Co-authored-by: deryaza <deryaza@DESKTOP-OBAKE1V>pull/10407/head
committed by
GitHub
9 changed files with 119 additions and 13 deletions
@ -0,0 +1,13 @@ |
|||||
|
<local:BaseView |
||||
|
xmlns="https://github.com/avaloniaui" |
||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
|
x:Class="Sample.App.ViewWithGenericBaseView" |
||||
|
Design.Width="300" |
||||
|
xmlns:sys="clr-namespace:System" |
||||
|
x:TypeArguments="sys:String" |
||||
|
x:Name="Root" |
||||
|
xmlns:local="clr-namespace:Sample.App"> |
||||
|
<Grid> |
||||
|
<local:BaseView x:Name="NotAsRootNode" x:TypeArguments="sys:Int32" /> |
||||
|
</Grid> |
||||
|
</local:BaseView> |
||||
Loading…
Reference in new issue