Start() public method

public Start ( ) : void
return void
Ejemplo n.º 1
0
 public static void Main()
 {
     ButtonHelper.ButtonSetup = new Buttons[]{ Buttons.TopRight, Buttons.BottomRight, Buttons.MiddleRight };
     ButtonHelper.Current.OnButtonPress += Current_OnButtonPress;
     watch = new WatchFace(face);
     watch.Start();
 }
Ejemplo n.º 2
0
        public static void Main()
        {

            ButtonHelper.Current.OnButtonPress += Current_OnButtonPress;
            watch = new WatchFace(face);
            watch.Start();
        }
Ejemplo n.º 3
0
        public static void Main()
        {

            var watch = new WatchFace(new MonthFace(NotificationProvider.Current, SettingsProvider.Current));
            watch.Start();
        }
Ejemplo n.º 4
0
 public static void Main()
 {
     var watch = new WatchFace(new WeatherWatchFace());
     watch.Start();
 }
Ejemplo n.º 5
0
        public static void Main()
        {

            var watch = new WatchFace(new SimpleFace());
            watch.Start();
        }