update user log dropdown display when clicked
This commit is contained in:
parent
c460fcca9f
commit
7f32fa1cb8
|
@ -45,7 +45,8 @@
|
||||||
TextMemberPath="UserName"
|
TextMemberPath="UserName"
|
||||||
PlaceholderText="Users"
|
PlaceholderText="Users"
|
||||||
Margin="5,0,5,0"
|
Margin="5,0,5,0"
|
||||||
HorizontalAlignment="Stretch" VerticalAlignment="Center"/>
|
HorizontalAlignment="Stretch" VerticalAlignment="Center"
|
||||||
|
GotFocus="Users_GotFocus"/>
|
||||||
<ComboBox
|
<ComboBox
|
||||||
Grid.Column="2"
|
Grid.Column="2"
|
||||||
x:Name="Types"
|
x:Name="Types"
|
||||||
|
|
|
@ -55,5 +55,13 @@ namespace PCUT.Pages
|
||||||
{
|
{
|
||||||
ViewModels.Pagination.Page++;
|
ViewModels.Pagination.Page++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void Users_GotFocus(object sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
if (!Users.IsSuggestionListOpen)
|
||||||
|
{
|
||||||
|
Users.IsSuggestionListOpen = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue