mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 06:56:10 +00:00
Correctif binding
This commit is contained in:
parent
4c63fce22f
commit
dfcdda9901
1 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@
|
|||
<ContentPage.Content>
|
||||
<StackLayout>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Picker SelectedItem="{Binding BindingContext.Quantity, Mode=TwoWay}">
|
||||
<Picker SelectedItem="{Binding Quantity, Mode=TwoWay}">
|
||||
<Picker.ItemsSource>
|
||||
<x:Array Type="{x:Type x:Int32}">
|
||||
<x:Int32>6</x:Int32>
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
</x:Array>
|
||||
</Picker.ItemsSource>
|
||||
</Picker>
|
||||
<Picker ItemDisplayBinding="{Binding StringFormat='d{0}'}" SelectedItem="{Binding BindingContext.Type, Mode=TwoWay}">
|
||||
<Picker ItemDisplayBinding="{Binding StringFormat='d{0}'}" SelectedItem="{Binding Type, Mode=TwoWay}">
|
||||
<Picker.ItemsSource>
|
||||
<x:Array Type="{x:Type x:Int32}">
|
||||
<x:Int32>20</x:Int32>
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
</x:Array>
|
||||
</Picker.ItemsSource>
|
||||
</Picker>
|
||||
<Picker ItemDisplayBinding="{Binding StringFormat='{}{0:+0;-#}'}" SelectedItem="{Binding BindingContext.Mod, Mode=TwoWay}">
|
||||
<Picker ItemDisplayBinding="{Binding StringFormat='{}{0:+0;-#}'}" SelectedItem="{Binding Mod, Mode=TwoWay}">
|
||||
<Picker.ItemsSource>
|
||||
<x:Array Type="{x:Type x:Int32}">
|
||||
<x:Int32>10</x:Int32>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue