public UserControl1(TvShowsDataSource tvShowsDataSource)
 {
     InitializeComponent();
     this.tvShowsDataSource = tvShowsDataSource;
     listShow.ItemsSource   = tvShowsDataSource.Shows;
     this.Loaded           += UserControl1_Loaded;
 }
示例#2
0
 public UserControl1(TvShowsDataSource tvShowsDataSource)
 {
     this.tvShowsDataSource = tvShowsDataSource;
     listShow.ItemsSource   = tvShowsDataSource.Shows;
     this.Loaded           += UserControl1_Loaded;
 }