示例#1
0
        public MainForm()
        {
            InitializeComponent();

            _intFnc            = new InterfaceFinance(string.Empty);
            _intFnc.Sheet.Dock = DockStyle.Fill;

            InitRibbon();
            InitSheet();
        }
        private void Init()
        {
            _intBoo = new InterfaceBooking(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\Servodroid\Droid-Booking\Cloud\");
            _intBoo.LanguageModified += _intBoo_LanguageModified;
            this.Controls.Add(_intBoo.Sheet);

            _int_fin = new InterfaceFinance(string.Empty);

            BuildRibbon();
        }
示例#3
0
 public void Test_interface_financial()
 {
     try
     {
         InterfaceFinance intfnc = new InterfaceFinance(string.Empty);
         Assert.IsTrue(true);
     }
     catch (System.Exception exp)
     {
         Assert.Fail(exp.Message);
     }
 }
示例#4
0
 public ViewBills(InterfaceFinance intFin)
 {
     _intFin = intFin;
     InitializeComponent();
     Init();
 }