• 右键弹出菜单 并动态新增菜单子项


    private void vAssetDetailDataGridView_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e)
            {
                if (e.Button == MouseButtons.Right)
                {
                    if (e.RowIndex >= 0)
                    {
                        if (vAssetDetailDataGridView.Rows[e.RowIndex].Selected == false)
                        {
                            vAssetDetailDataGridView.ClearSelection();
                            vAssetDetailDataGridView.Rows[e.RowIndex].Selected = true;
                        }
                        string typename = vAssetDetailDataGridView.Rows[e.RowIndex].Cells[0].Value.ToString();
                        AssetType listtype = AssetTypeBLL.QueryAllAssetType().FirstOrDefault<AssetType>(p => p.TypeName == typename) as AssetType;
    
                        if (listtype != null)
                        {
                            List<AssetTypeExtend> listextend = AssetTypeBLL.QueryAssetTypeExtend(listtype.Id);
                            cmsTypeExtend.Items.Clear();
                            for (int i = 0; i < listextend.Count; i++)
                            {
                                cmsTypeExtend.Items.Add(listextend[i].ExtendName);
                            }
                        }
                        else
                        {
                            cmsTypeExtend.Text = "暂无属性";
                        }                    
                        
                        cmsTypeExtend.Show(MousePosition.X, MousePosition.Y);
                    }
                }
            }
    
  • 相关阅读:
    Go语言
    Go语言
    electron-builder vue3 用户自定义安装目录
    提取页面中的style标签内容
    px2rpx | px转rpx
    js EventBus
    select 下拉选择多个值
    keep-alive页面缓存
    js适配移动端页面
    vue日常问题记录
  • 原文地址:https://www.cnblogs.com/dreamzcy/p/3679983.html
Copyright © 2020-2023  润新知