public WeatherUnderground()
 {
     Current_Observation = new CurrentObservation()
     {
         Display_Location = new Location()
         {
             City    = " ",
             Country = " "
         },
         Observation_Location = new Location()
         {
             City    = " ",
             Country = " "
         },
         Temperature_String = " ",
         UV      = " ",
         Weather = " ",
     };
 }
Esempio n. 2
0
 public WeatherUnderground()
 {
     Current_Observation = new CurrentObservation()
     {
         Display_Location = new Location()
         {
             City    = "New York",
             Country = "US"
         },
         Observation_Location = new Location()
         {
             City    = "New York",
             Country = "US"
         },
         Precip_Today_String = "15 mm",
         Temperature_String  = "21 C",
         UV          = "UV 7",
         Weather     = "sunny",
         Wind_String = "12 Kph NE"
     };
 }
Esempio n. 3
0
 public WeatherUnderground()
 {
     //if (DesignerProperties.GetIsInDesignMode(new System.Windows.DependencyObject()))
     //{
     Current_Observation = new CurrentObservation()
     {
         Display_Location = new Location()
         {
             City    = "New York",
             Country = "US"
         },
         Observation_Location = new Location()
         {
             City    = "New York",
             Country = "US"
         },
         Precip_Today_String = "15 mm",
         Temperature_String  = "21 C",
         UV          = "7",
         Weather     = "sunny",
         Wind_String = "12 kph NE"
     };
     // }
 }