36 lines
936 B
C#
36 lines
936 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using Payroll.BO;
|
|
using Ease.CoreV35.Model;
|
|
|
|
namespace Payroll.UI
|
|
{
|
|
public partial class Form2 : Form
|
|
{
|
|
public Form2()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
private void Form2_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void ctlOrgControl1_ItemChanged()
|
|
{
|
|
//OrganogramBasic oItem = new OrganogramBasic();
|
|
//ObjectsTemplate<OrganogramBasic> oItems = new ObjectsTemplate<OrganogramBasic>();
|
|
//if (ctlOrgControl1.SelNode != null)
|
|
// oItem = ctlOrgControl1.SelNode;
|
|
//if (ctlOrgControl1.SelNodes != null)
|
|
// oItems = ctlOrgControl1.SelNodes;
|
|
}
|
|
}
|
|
}
|