21 lines
415 B
C#
21 lines
415 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Media;
|
|
using System.Reflection;
|
|
|
|
namespace ModuleWeather;
|
|
|
|
public partial class WeatherView : UserControl
|
|
{
|
|
public WeatherView() => InitializeComponent();
|
|
|
|
private void Update(object? sender, RoutedEventArgs e)
|
|
{
|
|
|
|
|
|
}
|
|
private void OnPortChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
|
|
}
|
|
} |