using System.Collections.Generic; using System.Windows.Controls; namespace ENI2.Controls { /// /// Interaction logic for MaerskOverviewControl.xaml /// public partial class MaerskOverviewControl : UserControl { public MaerskOverviewControl() { InitializeComponent(); this.brvListControl.PortLocode = "DEBRV"; this.wvnListControl.PortLocode = "DEWVN"; } public List ListControls { get { return new List() { this.brvListControl, this.wvnListControl }; } } } }