mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 22:40:18 +00:00
Fix DataType
This commit is contained in:
parent
06449c4487
commit
f4af6c7375
1 changed files with 3 additions and 3 deletions
|
@ -54,7 +54,7 @@
|
||||||
</ListBox.Styles>
|
</ListBox.Styles>
|
||||||
<ListBox.DataTemplates>
|
<ListBox.DataTemplates>
|
||||||
<DataTemplate
|
<DataTemplate
|
||||||
x:DataType="models:UserProfile">
|
DataType="models:UserProfile">
|
||||||
<Grid
|
<Grid
|
||||||
PointerEnter="Grid_PointerEntered"
|
PointerEnter="Grid_PointerEntered"
|
||||||
PointerLeave="Grid_OnPointerExited">
|
PointerLeave="Grid_OnPointerExited">
|
||||||
|
@ -110,13 +110,13 @@
|
||||||
CornerRadius="15"
|
CornerRadius="15"
|
||||||
Padding="0"
|
Padding="0"
|
||||||
Click="EditUser">
|
Click="EditUser">
|
||||||
<ui:SymbolIcon Symbol="Edit"/>
|
<ui:SymbolIcon Symbol="Edit" />
|
||||||
</Button>
|
</Button>
|
||||||
</Border>
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
<DataTemplate
|
<DataTemplate
|
||||||
x:DataType="models:AddModel">
|
DataType="models:AddModel">
|
||||||
<Panel
|
<Panel
|
||||||
Height="131"
|
Height="131"
|
||||||
Width="110">
|
Width="110">
|
||||||
|
|
Loading…
Reference in a new issue