├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── Bin ├── DuiLib.dll ├── DuiLib_d.dll ├── Resource │ ├── chatlistitem.xml │ ├── images │ │ ├── 241_100.gif │ │ ├── 251_100.gif │ │ ├── Add_hover@2x.png │ │ ├── Add_normal@2x.png │ │ ├── Add_press@2x.png │ │ ├── bg.png │ │ ├── btn_close0.png │ │ ├── btn_close1.png │ │ ├── btn_close2.png │ │ ├── btn_close_down.png │ │ ├── btn_close_highlight.png │ │ ├── btn_close_normal.png │ │ ├── btn_login0.png │ │ ├── btn_login1.png │ │ ├── btn_login2.png │ │ ├── btn_mini_down.png │ │ ├── btn_mini_highlight.png │ │ ├── btn_mini_normal.png │ │ ├── button_login_down.png │ │ ├── button_login_hover.png │ │ ├── button_login_normal.png │ │ ├── combo_hot.png │ │ ├── combo_normal.png │ │ ├── combo_pushed.png │ │ ├── edit_frame_hover.png │ │ ├── edit_frame_hover_reversed.png │ │ ├── edit_frame_normal.png │ │ ├── edit_frame_normal_reversed.png │ │ ├── edit_hot.png │ │ ├── edit_normal.png │ │ ├── edit_pushed.png │ │ ├── gh0st.png │ │ ├── i.png │ │ ├── icon_contacts_hover.png │ │ ├── icon_contacts_normal.png │ │ ├── icon_contacts_selected.png │ │ ├── icon_file_hover.png │ │ ├── icon_file_normal.png │ │ ├── icon_file_selected.png │ │ ├── icon_last_hover.png │ │ ├── icon_last_normal.png │ │ ├── icon_last_selected.png │ │ ├── listen.png │ │ ├── login_bg.png │ │ ├── shadow.png │ │ ├── tab_boom.png │ │ ├── tab_right.png │ │ ├── unify_btn_close_down.png │ │ ├── unify_btn_close_hover.png │ │ ├── unify_btn_close_normal.png │ │ ├── unify_btn_max_down.png │ │ ├── unify_btn_max_hover.png │ │ ├── unify_btn_max_normal.png │ │ ├── unify_btn_min_down.png │ │ ├── unify_btn_min_hover.png │ │ ├── unify_btn_min_normal.png │ │ ├── unify_btn_restore_down.png │ │ ├── unify_btn_restore_hover.png │ │ └── unify_btn_restore_normal.png │ ├── loginframe.xml │ ├── mainframe.xml │ └── mainmenu.xml ├── TIM.exe ├── TIM_d.exe ├── directui license.txt └── duilib license.txt ├── DuiLib ├── Control │ ├── UIActiveX.cpp │ ├── UIActiveX.h │ ├── UIButton.cpp │ ├── UIButton.h │ ├── UICheckBox.cpp │ ├── UICheckBox.h │ ├── UICombo.cpp │ ├── UICombo.h │ ├── UIDateTime.cpp │ ├── UIDateTime.h │ ├── UIEdit.cpp │ ├── UIEdit.h │ ├── UIFlash.cpp │ ├── UIFlash.h │ ├── UIGifAnim.cpp │ ├── UIGifAnim.h │ ├── UIHead.cpp │ ├── UIHead.h │ ├── UILabel.cpp │ ├── UILabel.h │ ├── UIList.cpp │ ├── UIList.h │ ├── UIListEx.cpp │ ├── UIListEx.h │ ├── UIListExItem.h │ ├── UIListExNode.cpp │ ├── UIListExNode.h │ ├── UIMenu.cpp │ ├── UIMenu.h │ ├── UIOption.cpp │ ├── UIOption.h │ ├── UIProgress.cpp │ ├── UIProgress.h │ ├── UIRichEdit.cpp │ ├── UIRichEdit.h │ ├── UIScrollBar.cpp │ ├── UIScrollBar.h │ ├── UISlider.cpp │ ├── UISlider.h │ ├── UIText.cpp │ ├── UIText.h │ ├── UITreeView.cpp │ ├── UITreeView.h │ ├── UIWebBrowser.cpp │ └── UIWebBrowser.h ├── Core │ ├── UIBase.cpp │ ├── UIBase.h │ ├── UIContainer.cpp │ ├── UIContainer.h │ ├── UIControl.cpp │ ├── UIControl.h │ ├── UIDefine.h │ ├── UIDlgBuilder.cpp │ ├── UIDlgBuilder.h │ ├── UIImageAttribute.cpp │ ├── UIImageAttribute.h │ ├── UIManager.cpp │ ├── UIManager.h │ ├── UIMarkup.cpp │ ├── UIMarkup.h │ ├── UIRender.cpp │ └── UIRender.h ├── Debug │ ├── DuiLib.log │ ├── DuiLib.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── DuiLib.lastbuildstate │ │ ├── DuiLib.write.1u.tlog │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── DuiLib_d.Build.CppClean.log │ ├── DuiLib_d.pch │ ├── StdAfx.obj │ ├── ThirdParty.obj │ ├── UIActiveX.obj │ ├── UIBase.obj │ ├── UIButton.obj │ ├── UICheckBox.obj │ ├── UIChildLayout.obj │ ├── UICombo.obj │ ├── UIContainer.obj │ ├── UIControl.obj │ ├── UIDateTime.obj │ ├── UIDelegate.obj │ ├── UIDlgBuilder.obj │ ├── UIEdit.obj │ ├── UIFlash.obj │ ├── UIGifAnim.obj │ ├── UIHead.obj │ ├── UIHorizontalLayout.obj │ ├── UIImageAttribute.obj │ ├── UILabel.obj │ ├── UIList.obj │ ├── UIListEx.obj │ ├── UIListExNode.obj │ ├── UIManager.obj │ ├── UIMarkup.obj │ ├── UIMenu.obj │ ├── UIOption.obj │ ├── UIProgress.obj │ ├── UIRender.obj │ ├── UIRichEdit.obj │ ├── UIScrollBar.obj │ ├── UIShadow.obj │ ├── UISlider.obj │ ├── UITabLayout.obj │ ├── UIText.obj │ ├── UITileLayout.obj │ ├── UITreeView.obj │ ├── UIVerticalLayout.obj │ ├── UIWebBrowser.obj │ ├── UIlib.obj │ ├── Utils.obj │ ├── WinImplBase.obj │ ├── XUnzip.obj │ ├── stb_image.obj │ ├── vc120.idb │ └── vc120.pdb ├── DuiLib.vcproj ├── DuiLib.vcxproj ├── DuiLib.vcxproj.filters ├── DuiLib.vcxproj.user ├── Layout │ ├── UIChildLayout.cpp │ ├── UIChildLayout.h │ ├── UIHorizontalLayout.cpp │ ├── UIHorizontalLayout.h │ ├── UITabLayout.cpp │ ├── UITabLayout.h │ ├── UITileLayout.cpp │ ├── UITileLayout.h │ ├── UIVerticalLayout.cpp │ └── UIVerticalLayout.h ├── StdAfx.cpp ├── StdAfx.h ├── UIlib.cpp ├── UIlib.h └── Utils │ ├── Flash11.tlb │ ├── FlashEventHandler.h │ ├── ThirdParty.cpp │ ├── ThirdParty.h │ ├── UIDelegate.cpp │ ├── UIDelegate.h │ ├── UIShadow.cpp │ ├── UIShadow.h │ ├── Utils.cpp │ ├── Utils.h │ ├── WebBrowserEventHandler.h │ ├── WinImplBase.cpp │ ├── WinImplBase.h │ ├── XUnzip.cpp │ ├── downloadmgr.h │ ├── flash11.tlh │ ├── stb_image.c │ └── stb_image.h ├── README.md ├── TIM.sln ├── TIM ├── ChatListItem.cpp ├── ChatListItem.h ├── DuiLib.exp ├── DuiLib.lib ├── DuiLib_d.exp ├── DuiLib_d.lib ├── LoginFrame.cpp ├── LoginFrame.h ├── MainFrame.cpp ├── MainFrame.h ├── ReadMe.txt ├── Resource.h ├── TIM.cpp ├── TIM.h ├── TIM.ico ├── TIM.rc ├── TIM.vcxproj ├── TIM.vcxproj.filters ├── TIM.vcxproj.user ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── directui license.txt └── duilib license.txt /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/1.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/3.png -------------------------------------------------------------------------------- /4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/4.png -------------------------------------------------------------------------------- /Bin/DuiLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/DuiLib.dll -------------------------------------------------------------------------------- /Bin/DuiLib_d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/DuiLib_d.dll -------------------------------------------------------------------------------- /Bin/Resource/chatlistitem.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Bin/Resource/images/241_100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/241_100.gif -------------------------------------------------------------------------------- /Bin/Resource/images/251_100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/251_100.gif -------------------------------------------------------------------------------- /Bin/Resource/images/Add_hover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/Add_hover@2x.png -------------------------------------------------------------------------------- /Bin/Resource/images/Add_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/Add_normal@2x.png -------------------------------------------------------------------------------- /Bin/Resource/images/Add_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/Add_press@2x.png -------------------------------------------------------------------------------- /Bin/Resource/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/bg.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_close0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_close0.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_close1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_close1.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_close2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_close2.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_close_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_close_down.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_close_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_close_highlight.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_close_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_login0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_login0.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_login1.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_login2.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_mini_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_mini_down.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_mini_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_mini_highlight.png -------------------------------------------------------------------------------- /Bin/Resource/images/btn_mini_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/btn_mini_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/button_login_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/button_login_down.png -------------------------------------------------------------------------------- /Bin/Resource/images/button_login_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/button_login_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/button_login_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/button_login_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/combo_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/combo_hot.png -------------------------------------------------------------------------------- /Bin/Resource/images/combo_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/combo_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/combo_pushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/combo_pushed.png -------------------------------------------------------------------------------- /Bin/Resource/images/edit_frame_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/edit_frame_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/edit_frame_hover_reversed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/edit_frame_hover_reversed.png -------------------------------------------------------------------------------- /Bin/Resource/images/edit_frame_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/edit_frame_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/edit_frame_normal_reversed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/edit_frame_normal_reversed.png -------------------------------------------------------------------------------- /Bin/Resource/images/edit_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/edit_hot.png -------------------------------------------------------------------------------- /Bin/Resource/images/edit_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/edit_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/edit_pushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/edit_pushed.png -------------------------------------------------------------------------------- /Bin/Resource/images/gh0st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/gh0st.png -------------------------------------------------------------------------------- /Bin/Resource/images/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/i.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_contacts_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_contacts_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_contacts_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_contacts_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_contacts_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_contacts_selected.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_file_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_file_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_file_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_file_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_file_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_file_selected.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_last_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_last_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_last_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_last_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/icon_last_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/icon_last_selected.png -------------------------------------------------------------------------------- /Bin/Resource/images/listen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/listen.png -------------------------------------------------------------------------------- /Bin/Resource/images/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/login_bg.png -------------------------------------------------------------------------------- /Bin/Resource/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/shadow.png -------------------------------------------------------------------------------- /Bin/Resource/images/tab_boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/tab_boom.png -------------------------------------------------------------------------------- /Bin/Resource/images/tab_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/tab_right.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_close_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_close_down.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_close_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_close_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_max_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_max_down.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_max_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_max_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_max_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_max_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_min_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_min_down.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_min_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_min_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_min_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_min_normal.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_restore_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_restore_down.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_restore_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_restore_hover.png -------------------------------------------------------------------------------- /Bin/Resource/images/unify_btn_restore_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cn-ygf/TIM/7fe90cf525f76dca7ed7cbd96bc2a17fc58d83b7/Bin/Resource/images/unify_btn_restore_normal.png -------------------------------------------------------------------------------- /Bin/Resource/loginframe.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |