34 lines
886 B
C#
34 lines
886 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace IBRCAD
|
|
{
|
|
public partial class frm_dashboardMore : Form
|
|
{
|
|
public frm_dashboardMore()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void timer1_Tick(object sender, EventArgs e)
|
|
{
|
|
//lblhora.Text = DateTime.Now.ToString("hh:mm:ss ");
|
|
// lblFecha.Text = DateTime.Now.ToLongDateString();
|
|
}
|
|
|
|
private void lbl_backHome_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
frm_main_menu frm_Main_Menu = new frm_main_menu();
|
|
frm_Main_Menu.openWinFormPanel(new frm_dashboard_home());
|
|
this.Close();
|
|
}//end back
|
|
}
|
|
}
|