duheng
2025-04-03 82f8a7ead37ff50dec3d0d40e572d4331f14a8b2
WinFrmUI/HStation.WinFrmUI.Assets.Core/19-translation/02-main/AssetsTranslationMainMgrPage.cs
@@ -1,8 +1,5 @@
using DevExpress.Drawing;
using DevExpress.Utils.DragDrop;
using DevExpress.Utils.Svg;
using DevExpress.Utils.DragDrop;
using DevExpress.XtraEditors;
using DevExpress.XtraTreeList.Nodes;
using HStation.Vmo;
using Yw;
using Yw.WinFrmUI.Page;
@@ -438,5 +435,20 @@
            var be = this.behaviorManager1.GetBehavior<DevExpress.Utils.DragDrop.DragDropBehavior>(this.gridView1);
            be.Properties.AllowDrag = allowArag;
        }
        private void BtnImportEx_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            if (_series == null)
            {
                return;
            }
            var dlg = new ImportTranslationExcel();
            dlg.SetBindingData(_series.ID);
            dlg.ReloadDataEvent += () =>
            {
                SetBindingData(_series);
            };
            dlg.ShowDialog();
        }
    }
}