Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <ComboBox x:Name="DropDownMenu" SelectedItem="{Binding Role, Mode=TwoWay}" Style="{StaticResource DropDownMenu}" Grid.Row="1" Grid.Column="2" >
  2. <ComboBoxItem Content="End user" ></ComboBoxItem>
  3. <ComboBoxItem Content="App developer"></ComboBoxItem>
  4. </ComboBox>
  5.  
  6. private string role;
  7. public string Role
  8. {
  9. get => role;
  10. set => Set(ref role, value);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement