mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
Title display working correctly
This commit is contained in:
@@ -416,7 +416,7 @@
|
|||||||
<Grid x:Name="ShadowReceiverGrid"/>
|
<Grid x:Name="ShadowReceiverGrid"/>
|
||||||
<Grid x:Name="PowerBar" CornerRadius="4" Height="72" Background="{StaticResource BackdropAcrylicBrush}" Translation="0,0,16" Shadow="{StaticResource ShellBarShadow}" Margin="12" VerticalAlignment="Top" HorizontalAlignment="Center" MinWidth="240">
|
<Grid x:Name="PowerBar" CornerRadius="4" Height="72" Background="{StaticResource BackdropAcrylicBrush}" Translation="0,0,16" Shadow="{StaticResource ShellBarShadow}" Margin="12" VerticalAlignment="Top" HorizontalAlignment="Center" MinWidth="240">
|
||||||
<AutoSuggestBox x:Name="SearchBox" x:FieldModifier="public" PlaceholderText="Launch an app" FontSize="24" Style="{StaticResource CustomStyledAutoSuggestBox}"
|
<AutoSuggestBox x:Name="SearchBox" x:FieldModifier="public" PlaceholderText="Launch an app" FontSize="24" Style="{StaticResource CustomStyledAutoSuggestBox}"
|
||||||
MinWidth="720" ItemsSource="{Binding Results.Results}" TextMemberPath="Title">
|
MinWidth="720" ItemsSource="{Binding Results.Results}">
|
||||||
<AutoSuggestBox.QueryIcon>
|
<AutoSuggestBox.QueryIcon>
|
||||||
<SymbolIcon Symbol="Find"/>
|
<SymbolIcon Symbol="Find"/>
|
||||||
</AutoSuggestBox.QueryIcon>
|
</AutoSuggestBox.QueryIcon>
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ namespace Wox.ViewModel
|
|||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
return Result.ToString();
|
return Result.Title.ToString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user