From caa3a24af79c298e73538854d54ed9015226e991 Mon Sep 17 00:00:00 2001 From: Jordy Hulck Date: Sun, 30 Aug 2015 23:51:58 +0200 Subject: [PATCH] Added JSDoc for ApplicationViewTitleBar --- winrt/winrt.d.ts | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/winrt/winrt.d.ts b/winrt/winrt.d.ts index b0e32cf9b..63b438fb4 100644 --- a/winrt/winrt.d.ts +++ b/winrt/winrt.d.ts @@ -14808,17 +14808,53 @@ declare module Windows.Foundation { declare module Windows.UI.ViewManagement { export class ApplicationViewTitleBar { + /** + * Gets or sets the color of the title bar background. + **/ backgroundColor: Color; + /** + * Gets or sets the background color of the title bar buttons. + **/ buttonBackgroundColor: Color; + /** + * Gets or sets the foreground color of the title bar buttons. + **/ buttonForegroundColor: Color; + /** + * Gets or sets the background color of a title bar button when the pointer is over it. + **/ buttonHoverBackgroundColor: Color; + /** + * Gets or sets the foreground color of a title bar button when the pointer is over it. + **/ buttonHoverForegroundColor: Color; + /** + * Gets or sets the background color of a title bar button when it's inactive. + **/ buttonInactiveBackgroundColor: Color; + /** + * Gets or sets the foreground color of a title bar button when it's inactive. + **/ buttonInactiveForegroundColor: Color; + /** + * Gets or sets the background color of a title bar button when it's pressed. + **/ buttonPressedBackgroundColor: Color; + /** + * Gets or sets the foreground color of a title bar button when it's pressed. + **/ buttonPressedForegroundColor: Color; + /** + * Gets or sets the color of the title bar foreground. + **/ foregroundColor: Color; + /** + * Gets or sets the color of the title bar background when it's inactive. + **/ inactiveBackgroundColor: Color; + /** + * Gets or sets the color of the title bar foreground when it's inactive. + **/ inactiveForegroundColor: Color; } } \ No newline at end of file