コード例 #1
0
ファイル: WeatherForm.cs プロジェクト: mishagl/weather
        private void renderTrayWeather(Weather weather, GeoLocation currentLocation)
        {
            notifyIconWeather.Text            = weather.GetTemperature() + " - " + currentLocation.Name;
            notifyIconWeather.BalloonTipText  = weather.ToString();
            notifyIconWeather.BalloonTipTitle = "Weather";

            notifyIconWeather.Icon = renderIcon(weather.Temperature);
        }
コード例 #2
0
ファイル: WeatherForm.cs プロジェクト: mishagl/weather
        private void renderTrayWeather(Weather weather, GeoLocation currentLocation)
        {
            notifyIconWeather.Text = weather.GetTemperature() + " - " + currentLocation.Name;
            notifyIconWeather.BalloonTipText = weather.ToString();
            notifyIconWeather.BalloonTipTitle = "Weather";

            notifyIconWeather.Icon = renderIcon(weather.Temperature);
        }