Пример #1
0
 /// <summary>
 /// Gets <see cref="bool"/> indicating whether <see cref="StatusBar"/> is visible or not.
 /// </summary>
 /// <param name="page">The <see cref="Page"/></param>
 /// <returns><see cref="bool"/></returns>
 public static bool GetIsVisible(Page page)
 {
     return(StatusBarExtensions.GetIsVisible(page));
 }
Пример #2
0
 /// <summary>
 /// Sets <see cref="double"/> to StatusBar.BackgroundOpacity
 /// </summary>
 /// <param name="page">The <see cref="Page"/></param>
 /// <param name="value"><see cref="double"/></param>
 public static void SetBackgroundOpacity(Page page, double value)
 {
     StatusBarExtensions.SetBackgroundOpacity(page, value);
 }
Пример #3
0
 /// <summary>
 /// Gets <see cref="double"/> from StatusBar.BackgroundOpacity
 /// </summary>
 /// <param name="page">The <see cref="Page"/></param>
 /// <returns><see cref="double"/></returns>
 public static double GetBackgroundOpacity(Page page)
 {
     return(StatusBarExtensions.GetBackgroundOpacity(page));
 }
Пример #4
0
 /// <summary>
 /// Sets Color to StatusBar.ForegroundColor
 /// </summary>
 /// <param name="page">The <see cref="Page"/></param>
 /// <param name="value"> Color</param>
 public static void SetForegroundColor(Page page, Color value)
 {
     StatusBarExtensions.SetForegroundColor(page, value);
 }
Пример #5
0
 /// <summary>
 /// Gets Color from StatusBar.ForegroundColor
 /// </summary>
 /// <param name="page">The <see cref="Page"/></param>
 /// <returns>Color</returns>
 public static Color GetForegroundColor(Page page)
 {
     return(StatusBarExtensions.GetForegroundColor(page));
 }
Пример #6
0
 /// <summary>
 /// Sets a <see cref="bool"/> resulting in <see cref="StatusBar"/> becoming visible or invisible.
 /// </summary>
 /// <param name="page">The <see cref="Page"/></param>
 /// <param name="value"><see cref="bool"/></param>
 public static void SetIsVisible(Page page, bool value)
 {
     StatusBarExtensions.SetIsVisible(page, value);
 }