青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆-381  評(píng)論-37  文章-0  trackbacks-0
DUILib xml配置項(xiàng)
根節(jié)點(diǎn)        子類      屬性                            類型
Window                                                         
    |--------Image      圖片信息
    |            o------name                            string
    |            o------restype                         string
    |            o------mask                            unsigned long#
    |
    |--------Font            字體信息
    |            o------name                            string
    |            o------size                            long
    |            o------bold                            bool
    |            o------underline                       bool
    |            o------default                         bool
    |
    |--------Default    默認(rèn)Attribute屬性
                 o------name                            string
                 o------value                           string
    
root(Window屬性)
    o--size              窗體初始化大小                 SIZE(int cx, int cy)
    o--sizebox           窗體區(qū)域                       RECT(long left, long top, long right,long bottom)
    o--caption           窗體標(biāo)題欄區(qū)域                 RECT(long left, long top, long right,long bottom)
    o--roundcorner       圓角大小                       SIZE(int cx, int cy)
    o--mininfo           窗體最小大小                   SIZE(int cx, int cy)
    o--maxinfo           窗體最大大小                   SIZE(int cx, int cy)
    o--showdirty         窗體顯示                       bool [true|false]
    o--alpha             窗體透明度                     int
    o--bktrans           背景是否支持透明               bool [true|false]
    o--disabledfontcolor 無效字體顏色                   string  #RRGGBBAA
    o--defaultfontcolor  默認(rèn)字體顏色                   string     #RRGGBBAA
    o--linkfontcolor     鏈接正常字體色                 string     #RRGGBBAA
    o--linkhoverfontcolor鏈接懸停字體色                 string     #RRGGBBAA
    o--selectedcolor     字體被選后顏色                 string     #RRGGBBAA
    
公共資源
Image
    |------o file/res                                   string
    |------o restype                                    string
    |------o dest                                       RECT(long left, long top, long right,long bottom)
    |------o source                                     RECT(long left, long top, long right,long bottom)
    |------o corner                                     RECT(long left, long top, long right,long bottom)
    |------o mask                                       string #FFFFFFFF
    |------o fade                                       byte
    |------o hole                                       bool [true|false]
    |------o xtiled                                     bool [true|false]
    |------o ytiled                                     bool [true|false]
使用說明:
    // 1、aaa.jpg
    // 2、file='aaa.jpg' res='' restype='0' dest='0,0,0,0' source='0,0,0,0' corner='0,0,0,0' 
    // mask='#FF0000' fade='255' hole='false' xtiled='false' ytiled='false'    

                                                    
Font
Default    

控件Control

控件名稱                                類

控件基類
Control                             CControlUI   
    |------o pos                                        RECT(long left, long top, long right,long bottom)
    |------o relativepos                                (int nMoveXPercent, int nMoveYPercent,int nZoomXPercent,int nZoomYPercent)
    |------o padding                                    RECT(long left, long top, long right,long bottom)
    |------o bkcolor/bkcolor1                           string #RRGGBBAA
    |------o bkcolor2                                   string #RRGGBBAA
    |------o bkcolor3                                   string #RRGGBBAA
    |------o bordercolor                                string #RRGGBBAA
    |------o focusbordercolor                           string #RRGGBBAA
    |------o bordersize                                 int 
    |------o borderround                                SIZE(int x, int y)
    |------o bkimage                                    Image 屬性
    |------o width                                      int
    |------o height                                     int
    |------o minwidth                                   int
    |------o minheight                                  int
    |------o maxwidth                                   int
    |------o maxheight                                  int
    |------o name                                       string
    |------o text                                       string
    |------o tooltip                                    string
    |------o userdata                                   string
    |------o enabled                                    bool [true|false]
    |------o mouse                                      bool [true|false]
    |------o visible                                    bool [true|false]
    |------o float                                      bool [true|false]
    |------o shortcut                                   TCHAR
    |------o menu                                       bool [true|false]
    
    
    
容器
Container                            CContainerUI
    |------o inset                                      RECT(long left, long top, long right,long bottom)
    |------o mousechild                                 bool [true|false]
    |------o vscrollbar                                 bool [true|false]
    |------o hscrollbar                                 bool [true|false]
    |------o childpadding                               int
    
布局管理器
VerticalLayout                      CVerticalLayoutUI : public  CContainerUI
    |------o sepheight                                  int
    |------o sepimm                                     bool [true|false]
    |------o CContainerUI::SetAttribute(pstrName, pstrValue)
    
HorizontalLayout                    CHorizontalLayoutUI : public  CContainerUI
    |------o sepwidth                                   int
    |------o sepimm                                     bool [true|false]
    |------o CContainerUI::SetAttribute(pstrName, pstrValue)

DialogLayout                        CDialogLayoutUI : public  CContainerUI
    |------o CContainerUI::SetAttribute(pstrName, pstrValue)
    
TileLayout                          CTitleLayoutUI : public  CContainerUI
    |------o columns                                    int
    |------o CContainerUI::SetAttribute(pstrName, pstrValue)
    
TabLayout                           CTabLayoutUI : public CContainerUI
    |------o selectedid                                 int
    |------o CContainerUI::SetAttribute(pstrName, pstrValue)


    
    

Edit                                CEditUI : public CLabelUI
    |------o readonly                                   bool [true|false]
    |------o password                                   bool [true|false]
    |------o maxchar                                    int
    |------o normalimage                                Image 屬性
    |------o hotimage                                   Image 屬性
    |------o focusedimage                               Image 屬性
    |------o disabledimage                              Image 屬性
    |------o nativebkcolor                              string #RRGGBBAA
    |------o CLabelUI::SetAttribute(pstrName, pstrValue)

List                                CListUI : public CVerticalLayoutUI, public IListUI
    |------o header                                     string bool [hidden|Show]
    |------o headerbkimage                              string path
    |------o scrollselect                               bool [true|false]
    |------o multiexpanding                             bool [true|false]
    |------o itemfont                                   int     Font列表的索引號(hào)
    |------o itemalign                                  string enum [left|center|right]
    |------o itemendellipsis                            bool [true|false]
    |------o itemtextpadding                            RECT(long left, long top, long right,long bottom)
    |------o itemtextcolor                              string #RRGGBBAA
    |------o itembkcolor                                string #RRGGBBAA
    |------o itemimage                                  string path
    |------o itemselectedtextcolor                      string #RRGGBBAA
    |------o itemselectedbkcolor                        string #RRGGBBAA
    |------o itemselectedimage                          string path
    |------o itemhottextcolor                           string #RRGGBBAA
    |------o itemhotbkcolor                             string #RRGGBBAA
    |------o itemhotimage                               Image 屬性
    |            |------o file                          string path
    |            |------o corner                        RECT(long left, long top, long right,long bottom)
    |------o itemdisabledtextcolor                      string #RRGGBBAA
    |------o itemdisabledbkcolor                        string #RRGGBBAA
    |------o itemdisabledimage                          Image 屬性
    |------o itemlinecolor                              string #RRGGBBAA
    |------o itemshowhtml                               bool [true|false]
    |------o CVerticalLayoutUI::SetAttribute(pstrName, pstrValue)
    
ListHeaderItem                      CListHeaderItemUI : public CControlUI
    |------o dragable                                   bool [true|false]
    |------o sepwidth                                   int
    |------o align                                      string enum [left|center|right]
    |------o itemshowhtml                               bool [true|false]
    |------o endellipsis                                bool [true|false]
    |------o font                                       int     Font列表的索引號(hào)
    |------o textcolor                                  string #RRGGBBAA
    |------o textpadding                                RECT(long left, long top, long right,long bottom)
    |------o showhtml                                   bool [true|false]
    |------o normalimage                                Image 屬性
    |------o hotimage                                   Image 屬性
    |------o pushedimage                                Image 屬性
    |------o focusedimage                               Image 屬性
    |------o sepimage                                   Image 屬性
    
CListElementUI : public CControlUI, public IListItemUI
    |------o selected                                   value 有此屬性就選中 
    |------o CControlUI::SetAttribute(pstrName, pstrValue)  
    
ListExpandElement                   CListExpandElementUI : public CListTextElementUI    
    |------o expander                                   RECT(long left, long top, long right,long bottom)
    |------o hideself                                   bool [true|false]
    |------o selected                                   bool
    |------o CListTextElementUI::SetAttribute(pstrName, pstrValue)
    
ListContainerElement                CListContainerElementUI            List容器
    |------o selected                                   value 有此屬性就選中
    
ListHeader                          CListHeaderUI

CListLabelElementUI : public CListElementUI


ListTextElement                     CListTextElementUI : public CListLabelElementUI
          


Label                               CLabelUI : public  CControlUI
    |------o align                                      string enum [left|center|right]
    |------o endellipsis                                bool [true|false]
    |------o font                                       int     Font列表的索引號(hào)
    |------o textcolor                                  string #RRGGBBAA
    |------o disabledtextcolor                          string #RRGGBBAA
    |------o textpadding                                RECT(long left, long top, long right,long bottom)
    |------o showhtml                                   bool [true|false]
    |------o CControlUI::SetAttribute( pstrName, pstrValue )
    
    
Text                                CTextUI : public  CLabelUI

Combo                               CComboUI : public CContainerUI, public IListOwnerUI
    |------o textpadding                                RECT(long left, long top, long right,long bottom)
    |------o normalimage                                Image 屬性
    |------o hotimage                                   Image 屬性
    |------o pushedimage                                Image 屬性
    |------o focusedimage                               Image 屬性
    |------o disabledimage                              Image 屬性
    |------o dropbox                                    string 
    |------o itemfont                                   int     Font列表的索引號(hào)
    |------o itemalign                                  string enum [left|center|right]
    |------o itemtextpadding                            RECT(long left, long top, long right,long bottom)
    |------o itemtextcolor                              string #RRGGBBAA
    |------o itembkcolor                                string #RRGGBBAA
    |------o itemimage                                  Image 屬性
    |------o itemselectedtextcolor                      string #RRGGBBAA
    |------o itemselectedimage                          Image 屬性
    |------o itemhottextcolor                           string #RRGGBBAA
    |------o itemhotbkcolor                             string #RRGGBBAA
    |------o itemhotimage                               Image 屬性
    |------o itemdisabledtextcolor                      string #RRGGBBAA
    |------o itemdisabledbkcolor                        string #RRGGBBAA
    |------o itemdisabledimage                          Image 屬性
    |------o itemlinecolor                              string #RRGGBBAA
    |------o itemshowhtml                               bool [true|false]
    |------o CContainerUI::SetAttribute(pstrName, pstrValue)
    

Button                              CButtonUI : public CLabelUI
    |------o normalimage                                Image 屬性
    |------o hotimage                                   Image 屬性
    |------o pushedimage                                Image 屬性
    |------o focusedimage                               Image 屬性
    |------o disabledimage                              Image 屬性
    |------o hottextcolor                               string #RRGGBBAA
    |------o pushedtextcolor                            string #RRGGBBAA
    |------o focusedtextcolor                           string #RRGGBBAA
    |------o CLabelUI::SetAttribute(pstrName, pstrValue)
    
Option                              COptionUI : public CButtonUI
    |------o group                                      string
    |------o selected                                   bool [true|false]
    |------o selectedimage                              Image 屬性
    |------o foreimage                                  Image 屬性
    |------o selectedtextcolor                          string #RRGGBBAA
    |------o CButtonUI::SetAttribute(pstrName, pstrValue)

Progress                            CProgressUI : public  CLabelUI
    |------o fgimage                                    Image 屬性
    |------o hor                                        bool
    |------o min                                        int
    |------o max                                        int
    |------o value                                      int
    |------o CLabelUI::SetAttribute(pstrName, pstrValue)
    
Slider                              CSliderUI : public  CProgressUI
    |------o thumbimage                                 Image 屬性
    |------o thumbhotimage                              Image 屬性
    |------o thumbpushedimage                           Image 屬性
    |------o thumbsize                                  SIZE(int x, int y)
    |------o step                                       int
    |------o CProgressUI::SetAttribute(pstrName, pstrValue)    
    
RichEdit                            CRichEditUI : public CContainerUI, public IMessageFilterUI
    |------o vscrollbar                                 bool [true|false]
    |------o autovscroll                                bool [true|false]
    |------o hscrollbar                                 bool [true|false]
    |------o autohscroll                                bool [true|false]
    |------o wanttab                                    bool [true|false]
    |------o wantreturn                                 bool [true|false]
    |------o wantctrlreturn                             bool [true|false]
    |------o rich                                       bool [true|false]
    |------o multiline                                  bool [false|true]
    |------o readonly                                   bool [true|false]
    |------o numberonly                                 bool [true|false]
    |------o password                                   bool [true|false]
    |------o align                                      string enum [left|center|right]
    |------o font                                       int     Font列表的索引號(hào)
    |------o textcolor                                  string #RRGGBBAA
    |------o CContainerUI::SetAttribute(pstrName, pstrValue)


ActiveX                             CActiveXUI : public  CControlUI
    |------o clsid                                      string
    |------o modulename                                 string
    |------o delaycreate                                bool [true|false]
    |------o CControlUI::SetAttribute(pstrName, pstrValue)
    

ScrollBar                           CScrollBarUI : public CControlUI
    |------o button1normalimage                         Image 屬性
    |------o button1hotimage                            Image 屬性
    |------o button1pushedimage                         Image 屬性
    |------o button1disabledimage                       Image 屬性
    |------o button2normalimage                         Image 屬性
    |------o button2hotimage                            Image 屬性
    |------o button2pushedimage                         Image 屬性
    |------o button2disabledimage                       Image 屬性
    |------o thumbnormalimage                           Image 屬性
    |------o thumbhotimage                              Image 屬性
    |------o thumbpushedimage                           Image 屬性
    |------o thumbdisabledimage                         Image 屬性
    |------o railnormalimage                            Image 屬性
    |------o railhotimage                               Image 屬性
    |------o railpushedimage                            Image 屬性
    |------o raildisabledimage                          Image 屬性
    |------o bknormalimage                              Image 屬性
    |------o bkhotimage                                 Image 屬性
    |------o bkpushedimage                              Image 屬性
    |------o bkdisabledimage                            Image 屬性
    |------o hor                                        bool [true|false]
    |------o linesize                                   int
    |------o range                                      int
    |------o value                                      int
    |------o showbutton1                                bool [true|false]
    |------o showbutton2                                bool [true|false]
    |------o CControlUI::SetAttribute(pstrName, pstrValue)
    


控件的通用屬性
stretch        STRETCHMODE
    o--------move_x
    o--------move_y
    o--------move_xy
    o--------size_x
    o--------size_y
    o--------size_xy
    o--------group
    o--------line
    
    
考慮到在xml編輯器中使用<>符號(hào)不方便,可以使用{}符號(hào)代替
支持標(biāo)簽嵌套(如<l><b>text</b></l>),但是交叉嵌套是應(yīng)該避免的(如<l><b>text</l></b>)
The string formatter supports a kind of "mini-html" that consists of various short tags:

  Bold:             <b>text</b>
  Color:            <c #xxxxxx>text</c>  where x = RGB in hex
  Font:             <f x>text</f>        where x = font id
  Italic:           <i>text</i>
  Image:            <i x y z>            where x = image name and y = imagelist num and z(optional) = imagelist id
  Link:             <a x>text</a>        where x(optional) = link content, normal like app:notepad or http:www.xxx.com
  NewLine           <n>                  
  Paragraph:        <p x>text</p>        where x = extra pixels indent in p
  Raw Text:         <r>text</r>
  Selected:         <s>text</s>
  Underline:        <u>text</u>
  X Indent:         <x i>                where i = hor indent in pixels
  Y Indent:         <y i>                where i = ver indent in pixels 
posted on 2012-07-21 10:47 小王 閱讀(4540) 評(píng)論(2)  編輯 收藏 引用 所屬分類: UI

評(píng)論:
# re: DirectUI Lib XML編寫說明[未登錄] 2015-01-21 11:27 | king
很好,對(duì)于我這樣的初學(xué)者很用幫助,謝謝樓主  回復(fù)  更多評(píng)論
  
# re: DirectUI Lib XML編寫說明 2015-06-25 18:09 | dictbox
這個(gè)不錯(cuò),很有用。  回復(fù)  更多評(píng)論
  
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲欧美视频一区二区三区| 欧美aaa级| 好吊色欧美一区二区三区四区| 欧美在线免费观看视频| 午夜国产不卡在线观看视频| 国产欧美日韩另类一区| 久久国产精品一区二区三区四区| 午夜视频在线观看一区二区三区| 国产美女精品一区二区三区| 久久精品动漫| 久久精品亚洲| 亚洲高清成人| 亚洲激情视频| 欧美日韩一区二区欧美激情| 亚洲在线一区| 午夜精品久久久久久久99水蜜桃 | 久久国产精品第一页| 国产中文一区| 你懂的国产精品永久在线| 欧美本精品男人aⅴ天堂| 99re热这里只有精品视频| 亚洲精品中文字幕在线| 国产精品xxx在线观看www| 欧美一区二区三区啪啪| 久久精品国产亚洲精品 | 久久精品欧美日韩精品| 亚洲高清电影| 99av国产精品欲麻豆| 国产精品乱子乱xxxx| 久久久久国产精品一区二区| 久久女同互慰一区二区三区| 一本久久综合亚洲鲁鲁| 亚洲欧美成人一区二区在线电影 | 久久er精品视频| 亚洲国产天堂久久国产91| 亚洲国产高清在线| 国产精品毛片在线| 美腿丝袜亚洲色图| 欧美日韩一区二区三区免费看| 欧美一区二区三区视频在线观看 | 久久偷窥视频| 欧美巨乳在线观看| 性欧美暴力猛交69hd| 久久这里有精品视频| 亚洲一区二区三区中文字幕| 欧美一区二区视频在线| 亚洲日本欧美| 亚洲一二三区在线观看| 亚洲国产高清一区| 亚洲图片欧美一区| 亚洲国产日韩欧美在线99| 在线午夜精品| 亚洲高清一区二区三区| 一本色道久久88综合亚洲精品ⅰ| 激情综合网址| 一本久久a久久精品亚洲| 伊人久久大香线蕉av超碰演员| 亚洲免费观看视频| 影音先锋日韩有码| 一本色道久久综合亚洲精品婷婷| 狠狠网亚洲精品| av不卡在线| 亚洲国产精品va在线观看黑人| 亚洲无玛一区| 亚洲美女精品一区| 欧美怡红院视频一区二区三区| 99在线观看免费视频精品观看| 欧美在线观看视频一区二区| 在线一区欧美| 免费成人激情视频| 久久精品九九| 国产精品福利久久久| 欧美黑人国产人伦爽爽爽| 国产日韩精品视频一区| 亚洲乱码视频| 亚洲黄色成人| 久久成人资源| 午夜一区二区三区在线观看| 欧美巨乳波霸| 欧美搞黄网站| 国产婷婷精品| 亚洲视频中文| 99国产精品自拍| 麻豆精品视频在线观看| 欧美专区在线观看| 欧美深夜影院| 亚洲激情午夜| 亚洲国产激情| 久久久久国产精品人| 欧美综合77777色婷婷| 欧美日韩亚洲视频一区| 亚洲国产另类精品专区| 亚洲第一精品福利| 久久成人18免费观看| 欧美一站二站| 国产精品理论片在线观看| 日韩网站在线观看| 日韩视频在线免费观看| 玖玖玖免费嫩草在线影院一区| 久久九九99| 国产日韩视频一区二区三区| 中日韩美女免费视频网址在线观看 | 久久国产福利| 国产精品永久免费在线| 亚洲一区三区电影在线观看| 亚洲免费视频中文字幕| 欧美日韩午夜剧场| 日韩一级视频免费观看在线| 亚洲免费精品| 欧美韩国日本一区| 亚洲观看高清完整版在线观看| 亚洲福利国产精品| 久久久亚洲高清| 麻豆精品视频在线观看| 激情一区二区| 久久综合色88| 亚洲电影免费观看高清| 亚洲精品久久久久久久久久久| 欧美成人免费全部观看天天性色| 欧美激情一区二区三区在线视频| 亚洲国产精品久久久久秋霞影院| 免费成人高清| 亚洲经典在线| 亚洲午夜在线观看| 国产精品久久二区| 午夜激情综合网| 久久久久免费| 亚洲福利专区| 欧美激情欧美狂野欧美精品| 亚洲精品乱码视频| 亚洲一区精品在线| 国产乱子伦一区二区三区国色天香 | 久久精品在线免费观看| 麻豆精品视频在线观看| 亚洲欧洲精品一区二区三区波多野1战4| 美女黄毛**国产精品啪啪| 欧美激情一区二区三区| 一区二区欧美国产| 国产精品久久久久久久久免费 | 午夜精品理论片| 国产日韩精品一区二区三区在线 | 久久精品人人做人人爽| 麻豆精品精华液| 亚洲伦理在线| 国产精品成人一区二区网站软件 | 欧美日韩一区二区在线| 一区二区三区四区国产精品| 先锋a资源在线看亚洲| 激情成人av| 欧美chengren| 一本色道久久加勒比精品| 欧美在线不卡| 亚洲国产成人在线播放| 欧美日韩福利| 亚洲欧美日韩国产综合在线| 久久久伊人欧美| 亚洲人成亚洲人成在线观看| 欧美日韩国产影院| 午夜欧美精品久久久久久久| 欧美高清日韩| 亚洲一区日韩在线| 国内久久视频| 欧美日韩高清在线播放| 亚洲欧美电影在线观看| 免费人成精品欧美精品| 亚洲午夜一区二区三区| 国产在线观看精品一区二区三区| 欧美福利在线观看| 亚洲永久在线| 欧美高清你懂得| 亚洲欧美日韩区| 亚洲国产精品女人久久久| 国产精品theporn| 久久人人爽国产| 在线亚洲一区观看| 免费亚洲婷婷| 亚洲综合色婷婷| 亚洲高清毛片| 国产精品欧美风情| 模特精品在线| 欧美一区二区大片| 亚洲精品乱码久久久久久按摩观| 久久riav二区三区| 亚洲免费av电影| 国产一区二区三区自拍| 欧美日韩在线播放一区二区| 久久久九九九九| 一区二区三区视频在线观看| 欧美成人精品一区二区| 午夜精品久久久久| 亚洲精品一区二区三区福利| 国产亚洲综合在线| 欧美日韩在线播放三区四区| 久久婷婷麻豆| 亚洲欧美精品一区| 亚洲理论在线观看| 欧美成人精品| 久久久久久夜| 亚洲欧美一区二区激情| 亚洲另类自拍|