zoukankan      html  css  js  c++  java
  • 【NX二次开发】Block UI 列表框

    属性说明

    常规         类型 描述
        BlockID     String 控件ID
        Enable     Logical 是否可操作
        Group     Logical 是否分组
        Label     Utfstring 标题
        Show     Logical 是否可见
    其他            
        Localize     Logical 是否本地化
        附件        
            Bottom Attachment 底部
            Left Attachment
            Right Attachment
            Top Attachment 顶部
    特定于块            
        AllowDeselectForSingleSelect Logical 允许取消单选内容
        Height Integer 高度
        ListItems Utfstrings 列表内容
        MaximumHeight Integer 最大高度
        MaximumStringLength Integer 最大字符串长度
        MinimumHeight Integer 最小高度
        ResizeHeightWithDialog Logical 调整对话框高度
        ShowAddButton Logical 是否显示添加按钮
        ShowDeleteButton Logical 是否显示删除按钮
        ShowMoveUpDownButtons Logical 是否显示上下移动按钮
        SingleSelect Logical 是否单选
         

    设置列表框高度

    list_box0->SetHeight(6);//列表框高度6

    设置控件的值

    1 std::vector<NXString> vecPartName;
    2 NXString temp="";
    3 char cTemp[256];
    4 sprintf(cTemp,"%s",strPartName.c_str());
    5 temp=cTemp;
    6 vecPartName.push_back(temp);
    7 list_box0->SetListItems(vecPartName);
  • 相关阅读:
    [NOI Online #3 提高组]
    Luogu P3491 [POI2009]SLW-Words
    AtCoder Grand Contest 043
    Luogu P5607 [Ynoi2013]无力回天NOI2017
    AtCoder Grand Contest 041
    Luogu P5070 [Ynoi2015]即便看不到未来
    BZOJ 4367: [IOI2014]holiday假期
    BZOJ 3571: [Hnoi2014]画框
    BZOJ 4456: [Zjoi2016]旅行者
    BZOJ 1111: [POI2007]四进制的天平Wag
  • 原文地址:https://www.cnblogs.com/KMould/p/13345663.html
Copyright © 2011-2022 走看看