public ReportsOverviewWindow(AppFunc function)
        {
            InitializeComponent();
            this.function = function;

            dtgReports.ItemsSource = function.GetReportList();

            //tbkName.Text = ride.Name;
            //tbkStatus.Text = ride.Name;
            //tbkReportDate.Text = ride.Name;
        }
Beispiel #2
0
 public NewRideWindow(AppFunc function)
 {
     InitializeComponent();
     this.function           = function;
     cbxCategory.ItemsSource = function.GetCategoryList();
 }