void OnDisbandAllBtn()
    {
        CSCommon csc = m_Entity as CSCommon;

        if (csc != null)
        {
            csc.ClearWorkers();
            //			CSUI_Main.ShowStatusBar("Disband all workers who work for this machine");
        }
    }