27 lines
682 B
C#
27 lines
682 B
C#
using System.Collections.Generic;
|
|
using System.Windows.Controls;
|
|
|
|
namespace ENI2.Controls
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MaerskOverviewControl.xaml
|
|
/// </summary>
|
|
public partial class MaerskOverviewControl : UserControl
|
|
{
|
|
public MaerskOverviewControl()
|
|
{
|
|
InitializeComponent();
|
|
this.brvListControl.PortLocode = "DEBRV";
|
|
this.wvnListControl.PortLocode = "DEWVN";
|
|
}
|
|
|
|
public List<MaerskListControl> ListControls
|
|
{
|
|
get
|
|
{
|
|
return new List<MaerskListControl>() { this.brvListControl, this.wvnListControl };
|
|
}
|
|
}
|
|
}
|
|
}
|