Example #1
0
 /// <summary>
 /// Creates a new instance of an AppBarStyle with style.
 /// The given style is copied to the new instance.
 /// </summary>
 /// <param name="style">Creates AppBarStyle by style customized by user.</param>
 /// <since_tizen> 9 </since_tizen>
 public AppBarStyle(AppBarStyle style) : base(style)
 {
 }
Example #2
0
 /// <summary>
 /// Creates a new instance of AppBar.
 /// </summary>
 /// <param name="appBarStyle">Creates AppBar by style customized by user.</param>
 /// <since_tizen> 9 </since_tizen>
 public AppBar(AppBarStyle appBarStyle) : base(appBarStyle)
 {
     Initialize();
 }
Example #3
0
 /// <summary>
 /// Creates a new instance of AppBar.
 /// </summary>
 /// <param name="appBarStyle">Creates AppBar by style customized by user.</param>
 /// <since_tizen> 9 </since_tizen>
 public AppBar(AppBarStyle appBarStyle) : base(appBarStyle)
 {
     Initialize();
     //to use GetNextFocusableView
     SetKeyboardNavigationSupport(true);
 }