Exemplo n.º 1
0
 public static void Main()
 {
     WeatherWatchFace face = new WeatherWatchFace();
     face.WeatherProvider = WeatherProvider.Current;
     var watch = new WatchFace(face);
     watch.Start();
 }
Exemplo n.º 2
0
 public static void Main()
 {
     ButtonHelper.ButtonSetup = new Buttons[]{ Buttons.TopRight, Buttons.BottomRight, Buttons.MiddleRight, Buttons.TopLeft };
     ButtonHelper.Current.OnButtonPress += Current_OnButtonPress;
     watch = new WatchFace(face);
     watch.Start();
 }
Exemplo n.º 3
0
        public static void Main()
        {

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

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

            var watch = new WatchFace(new SimpleFace());
            watch.Start();
        }
Exemplo n.º 6
0
 public static void Main()
 {
     var watch = new WatchFace(new WeatherWatchFace());
     watch.Start();
 }