public ReportsOverviewWindow(AppFunc function) { InitializeComponent(); this.function = function; dtgReports.ItemsSource = function.GetReportList(); //tbkName.Text = ride.Name; //tbkStatus.Text = ride.Name; //tbkReportDate.Text = ride.Name; }
public NewRideWindow(AppFunc function) { InitializeComponent(); this.function = function; cbxCategory.ItemsSource = function.GetCategoryList(); }