예제 #1
0
        public ViewMainMenu()
        {
            InitializeComponent();
            MessageBox.Show("Bem-Vindo ao Cook Yourself!", "Bem-Vindo!", MessageBoxButton.OK, MessageBoxImage.Information, MessageBoxResult.OK);
            Inicio.Width  = 200; Sobre.Width = 200; Salgados.Width = 200; Doces.Width = 200; Lanches.Width = 200; Bebidas.Width = 200;
            Inicio.Height = 60; Sobre.Height = 60; Salgados.Height = 60; Doces.Height = 60; Lanches.Height = 60; Bebidas.Height = 60;

            tblSalgados.ItemsSource = dao.CarregarReceitas("Salgado");
            tblLanches.ItemsSource  = dao.CarregarReceitas("Lanche");
            tblBebidas.ItemsSource  = dao.CarregarReceitas("Bebida");
            tblDoces.ItemsSource    = dao.CarregarReceitas("Doce");
        }