-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Update MainLandingPage UI to WinUI Gallery one
I mainly want the new/updated HeaderTiles at the top.

Template fix
You forgot to update the template for the refactored ThemeService. When creating a new project from template it has:
private void ThemeButton_Click(object sender, RoutedEventArgs e)
{
ThemeService.ChangeThemeWithoutSave(App.MainWindow);
}
correct would be:
private void ThemeButton_Click(object sender, RoutedEventArgs e)
{
App.Current.ThemeService.SetElementThemeWithoutSaveAsync();
}
Questions
Im currently not updating from 9.0.0 preview1 to 9.0.0 because the new FileOpenPicker from WinAppSDK doesn't support InitialDirectory. I know that there is SuggestedStartLocation but I need more specific paths. Is there a way to circumvent this limitation or that you could reintroduce your custom Picker until they add it?
Also how exactly do you manually change the TintColor now and is it possible to do it using the DropdownColorPicker again?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request