mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 06:56:10 +00:00
Problem solved ;)
This commit is contained in:
parent
8ff866f8b6
commit
1a3ec6e557
2 changed files with 6 additions and 4 deletions
|
|
@ -62,10 +62,13 @@ namespace AideDeJeu.ViewModels
|
||||||
}
|
}
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (_Index != value)
|
if (value >= 0)
|
||||||
{
|
{
|
||||||
SetProperty(ref _Index, value);
|
if (_Index != value)
|
||||||
Main.LoadItemsCommand.Execute(null);
|
{
|
||||||
|
SetProperty(ref _Index, value);
|
||||||
|
Main.LoadItemsCommand.Execute(null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@
|
||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
</ListView.ItemTemplate>
|
</ListView.ItemTemplate>
|
||||||
</ListView>
|
</ListView>
|
||||||
<!--<ContentView ControlTemplate="{Binding ItemsType, Converter={StaticResource ItemsTypeTemplateConverter}}" BindingContext="{Binding}" />-->
|
|
||||||
</ContentPage>
|
</ContentPage>
|
||||||
</MasterDetailPage.Master>
|
</MasterDetailPage.Master>
|
||||||
<MasterDetailPage.Detail>
|
<MasterDetailPage.Detail>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue