Inheritance: NiCommandBarControl, INiCommandBarLabel
コード例 #1
0
ファイル: NiCommandManager.cs プロジェクト: vector-man/netide
        public HResult CreateCommandBarLabel(Guid id, int priority, out INiCommandBarLabel label)
        {
            label = null;

            try
            {
                label = new NiCommandBarLabel(id, priority);

                _objects[id] = label;

                return(HResult.OK);
            }
            catch (Exception ex)
            {
                return(ErrorUtil.GetHResult(ex));
            }
        }
コード例 #2
0
ファイル: NiCommandManager.cs プロジェクト: netide/netide
        public HResult CreateCommandBarLabel(Guid id, int priority, out INiCommandBarLabel label)
        {
            label = null;

            try
            {
                label = new NiCommandBarLabel(id, priority);

                _objects[id] = label;

                return HResult.OK;
            }
            catch (Exception ex)
            {
                return ErrorUtil.GetHResult(ex);
            }
        }