Files
@ 65c134a3d619
Branch filter:
Location: seniordesign-ui/Demo.WindowsPresentation/Controls/TrolleyTooltip.xaml.cs - annotation
65c134a3d619
721 B
text/x-csharp
Initial import of mapping source (huge commit)
65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 | using System.Windows.Controls;
using GMap.NET;
using Demo.WindowsForms;
namespace Demo.WindowsPresentation.Controls
{
/// <summary>
/// Interaction logic for TrolleyTooltip.xaml
/// </summary>
public partial class TrolleyTooltip : UserControl
{
public TrolleyTooltip()
{
InitializeComponent();
}
public void SetValues(string type, VehicleData vl)
{
Device.Text = vl.Id.ToString();
LineNum.Text = type + " " + vl.Line;
StopName.Text = vl.LastStop;
TrackType.Text = vl.TrackType;
TimeGps.Text = vl.Time;
Area.Text = vl.AreaName;
Street.Text = vl.StreetName;
}
}
}
|