[Libreoffice-bugs] [Bug 118320] Add support for Windows 10 dark mode
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Mon Jun 25 10:16:51 UTC 2018
https://bugs.documentfoundation.org/show_bug.cgi?id=118320
--- Comment #9 from Pedro <vermelhusco1904 at gmail.com> ---
So, here's more information:
UWP apps use XAML, a markup-based language that makes it easier to create user
interfaces.
XAML example:
<Grid BorderBrush="Blue" BorderThickness="4">
<TextBox Text="Design with XAML" Margin="20" Padding="24,16"/>
</Grid>
https://docs.microsoft.com/en-us/windows/uwp/design/fluent-design-system/
UWP apps can use a light or dark color scheme:
https://docs.microsoft.com/en-us/windows/uwp/design/style/color
Theme can be changed by changing the requested theme property in the App.xaml
file:
<Application
x:Class="App9.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App9"
RequestedTheme="Dark">
</Application>
https://docs.microsoft.com/en-us/windows/uwp/design/style/color
There's a loooot of stuff to fine tune there.
This is relevant because, in Build 2018 they announced XAML islands for legay
software like win32 apps, WPF and WinForms:
https://developer.microsoft.com/en-us/events/build/content/announcing-uwp-xaml-islands?playlist=80d147e8-f3b0-4ca0-a96f-cfc8e80bec20
https://www.windowscentral.com/microsoft-giving-developers-access-fluent-design-win32-apps-and-more
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20180625/b2c47675/attachment-0001.html>
More information about the Libreoffice-bugs
mailing list