在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 完美C#邮件服务器源码

完美C#邮件服务器源码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:3.66M
  • 下载次数:14
  • 浏览次数:113
  • 发布时间:2023-04-27
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 服务器 完美 源码 服务 C#

实例介绍

【实例简介】完美C#邮件服务器源码
需要的下载。请相信我上传的代码都是可以编译通过的。详情参阅http://blog.csdn.net/applemacosx/archive/2010/04/01/5442146.aspx

【实例截图】

from clipboard

from clipboard

【核心代码】
文件清单
└── MailServer_latest
    └── LumiSoft
        ├── DelObj.exe
        ├── MailServer
        │   ├── Application
        │   │   ├── make_debug.bat
        │   │   ├── make_release.bat
        │   │   └── Release
        │   │       ├── a_unregister.bat
        │   │       ├── BackUp
        │   │       ├── Filters
        │   │       │   ├── lsSpam_db.xml
        │   │       │   ├── lsSpamFilter.exe
        │   │       │   ├── lsVirusFilter_db.xml
        │   │       │   ├── lsVirusFilter.exe
        │   │       │   └── lumisoft.ui.dll
        │   │       ├── Help
        │   │       │   └── MailServer_ENG.chm
        │   │       ├── InstallUtil.exe
        │   │       ├── InstallUtil.InstallLog
        │   │       ├── lsMailServer.exe
        │   │       ├── lsmailserver.InstallLog
        │   │       ├── lsMailServer.xml
        │   │       ├── LumiSoft.MailServerAPI.dll
        │   │       ├── LumiSoft.MailServerAPI.xml
        │   │       ├── LumiSoft.Net.dll
        │   │       ├── LumiSoft.Net.xml
        │   │       ├── LumiSoft.UI.dll
        │   │       ├── LumiSoft.UI.xml
        │   │       ├── MailServerManager.exe
        │   │       ├── register.bat
        │   │       ├── RemoteAdmin
        │   │       │   ├── bin
        │   │       │   │   └── LumiSoft.MailServerAPI.dll
        │   │       │   ├── Global.asax
        │   │       │   └── RemoteAdmin.asmx
        │   │       └── Settings
        │   │           ├── Aliases.xml
        │   │           ├── Domains.xml
        │   │           ├── Filters.xml
        │   │           ├── ManagerSettings.xml
        │   │           ├── Routing.xml
        │   │           ├── Security.xml
        │   │           ├── Settings.xml
        │   │           └── Users.xml
        │   ├── errors.txt
        │   ├── Filters
        │   │   ├── lsSpamFilter
        │   │   │   ├── AssemblyInfo.cs
        │   │   │   ├── bin
        │   │   │   │   └── Release
        │   │   │   │       ├── lsSpam_db.xml
        │   │   │   │       ├── lsSpamFilter.exe
        │   │   │   │       ├── LumiSoft.MailServerAPI.dll
        │   │   │   │       ├── LumiSoft.MailServerAPI.xml
        │   │   │   │       ├── LumiSoft.Net.dll
        │   │   │   │       ├── LumiSoft.Net.xml
        │   │   │   │       ├── lumisoft.ui.dll
        │   │   │   │       └── lumisoft.ui.xml
        │   │   │   ├── Db
        │   │   │   │   └── lsSpam_db.xml
        │   │   │   ├── lsSpamFilter.cs
        │   │   │   ├── lsSpamFilter.csproj
        │   │   │   ├── lsSpamFilter.csproj.user
        │   │   │   ├── lsSpamFilter.sln
        │   │   │   ├── lsSpamFilter.suo
        │   │   │   ├── MainX.cs
        │   │   │   ├── readme.txt
        │   │   │   ├── wfrm_Configure.cs
        │   │   │   └── wfrm_Configure.resx
        │   │   └── lsVirusFilter
        │   │       ├── App.ico
        │   │       ├── AssemblyInfo.cs
        │   │       ├── bin
        │   │       │   └── Release
        │   │       │       ├── lsVirusFilter_db.xml
        │   │       │       └── lsVirusFilter.exe
        │   │       ├── Db
        │   │       │   └── lsVirusFilter_db.xml
        │   │       ├── Form1.cs
        │   │       ├── Form1.resx
        │   │       ├── lsVirusFilter.cs
        │   │       ├── lsVirusFilter.csproj
        │   │       ├── lsVirusFilter.csproj.user
        │   │       ├── lsVirusFilter.sln
        │   │       ├── lsVirusFilter.suo
        │   │       ├── MainX.cs
        │   │       └── readme.txt
        │   ├── Help
        │   │   ├── Server&API
        │   │   │   ├── Help
        │   │   │   │   └── LSServer&API.chm
        │   │   │   └── Untitled.ndoc
        │   │   └── User
        │   │       └── ENG
        │   │           ├── Admin
        │   │           │   └── def.htm
        │   │           ├── def.htm
        │   │           ├── _Images
        │   │           │   ├── aliases.jpg
        │   │           │   ├── alias.jpg
        │   │           │   ├── domain.jpg
        │   │           │   ├── domains.jpg
        │   │           │   ├── filter.jpg
        │   │           │   ├── filters.jpg
        │   │           │   ├── logo.jpg
        │   │           │   ├── main.jpg
        │   │           │   ├── route.jpg
        │   │           │   ├── routing.jpg
        │   │           │   ├── securit1.jpg
        │   │           │   ├── securit2.jpg
        │   │           │   ├── security.jpg
        │   │           │   ├── server.jpg
        │   │           │   ├── sys_delivery.jpg
        │   │           │   ├── sys_general.jpg
        │   │           │   ├── sys_imap.jpg
        │   │           │   ├── sys_pop3.jpg
        │   │           │   ├── sys_smtp.jpg
        │   │           │   ├── user1.jpg
        │   │           │   ├── user2.jpg
        │   │           │   └── users.jpg
        │   │           ├── Install
        │   │           │   └── def.htm
        │   │           ├── Intro
        │   │           │   └── def.htm
        │   │           ├── MailServer_ENG.chm
        │   │           ├── mailserver.hhp
        │   │           ├── Problems
        │   │           │   └── def.htm
        │   │           ├── Started
        │   │           │   └── def.htm
        │   │           ├── Start.htm
        │   │           ├── style.css
        │   │           ├── Table of Contents.hhc
        │   │           └── Windows
        │   │               ├── aliases.htm
        │   │               ├── alias.htm
        │   │               ├── def.htm
        │   │               ├── domain.htm
        │   │               ├── domains.htm
        │   │               ├── filter.htm
        │   │               ├── filters.htm
        │   │               ├── route.htm
        │   │               ├── routing.htm
        │   │               ├── securit.htm
        │   │               ├── security.htm
        │   │               ├── server_add.htm
        │   │               ├── server.htm
        │   │               ├── system.htm
        │   │               ├── user.htm
        │   │               └── users.htm
        │   ├── help.txt
        │   ├── Install
        │   ├── MailServer
        │   │   ├── AssemblyInfo.cs
        │   │   ├── Error.cs
        │   │   ├── Installer1.cs
        │   │   ├── licenses.licx
        │   │   ├── lsMailServer.csproj
        │   │   ├── lsMailServer.csproj.user
        │   │   ├── lsMailServer.sln
        │   │   ├── lsMailServer.suo
        │   │   ├── lsMailServer.xml
        │   │   ├── MailServer_Service.cs
        │   │   ├── MailServer_Service.resx
        │   │   ├── MailStore
        │   │   │   └── MailStore.cs
        │   │   ├── MainX.cs
        │   │   ├── Realy
        │   │   │   ├── Relay.cs
        │   │   │   └── RelayInfo.cs
        │   │   ├── SCore.cs
        │   │   ├── Stuff
        │   │   │   └── ISmtpMessageFilter.cs
        │   │   └── Tray
        │   │       ├── wfrm_Tray.cs
        │   │       └── wfrm_Tray.resx
        │   ├── MailServerManager
        │   │   ├── App.ico
        │   │   ├── AssemblyInfo.cs
        │   │   ├── Controls
        │   │   │   ├── NoActiveCellColumn.cs
        │   │   │   ├── WDataGrid.cs
        │   │   │   └── WDataGrid.resx
        │   │   ├── Forms
        │   │   │   ├── wfrm_AddServer.cs
        │   │   │   ├── wfrm_AddServer.resx
        │   │   │   ├── wfrm_Alias.cs
        │   │   │   ├── wfrm_Aliases.cs
        │   │   │   ├── wfrm_Aliases.resx
        │   │   │   ├── wfrm_Alias.resx
        │   │   │   ├── wfrm_Domain.cs
        │   │   │   ├── wfrm_Domain.resx
        │   │   │   ├── wfrm_Domains.cs
        │   │   │   ├── wfrm_Domains.resx
        │   │   │   ├── wfrm_EditUndeliveredText.cs
        │   │   │   ├── wfrm_EditUndeliveredText.resx
        │   │   │   ├── wfrm_Error.cs
        │   │   │   ├── wfrm_Error.resx
        │   │   │   ├── wfrm_Filter.cs
        │   │   │   ├── wfrm_Filter.resx
        │   │   │   ├── wfrm_Filters.cs
        │   │   │   ├── wfrm_Filters.resx
        │   │   │   ├── wfrm_Main.cs
        │   │   │   ├── wfrm_Main.resx
        │   │   │   ├── wfrm_Route.cs
        │   │   │   ├── wfrm_Route.resx
        │   │   │   ├── wfrm_Routing.cs
        │   │   │   ├── wfrm_Routing.resx
        │   │   │   ├── wfrm_Security.cs
        │   │   │   ├── wfrm_SecurityEntry.cs
        │   │   │   ├── wfrm_SecurityEntry.resx
        │   │   │   ├── wfrm_Security.resx
        │   │   │   ├── wfrm_Server.cs
        │   │   │   ├── wfrm_Server.resx
        │   │   │   ├── wfrm_Servers.cs
        │   │   │   ├── wfrm_Servers.resx
        │   │   │   ├── wfrm_System_Delivery.cs
        │   │   │   ├── wfrm_System_Delivery.resx
        │   │   │   ├── wfrm_System_Frame.cs
        │   │   │   ├── wfrm_System_Frame.resx
        │   │   │   ├── wfrm_System_General.cs
        │   │   │   ├── wfrm_System_General.resx
        │   │   │   ├── wfrm_System_IMAP.cs
        │   │   │   ├── wfrm_System_IMAP.resx
        │   │   │   ├── wfrm_System_POP3.cs
        │   │   │   ├── wfrm_System_POP3.resx
        │   │   │   ├── wfrm_System_SMTP.cs
        │   │   │   ├── wfrm_System_SMTP.resx
        │   │   │   ├── wfrm_User_Frame.cs
        │   │   │   ├── wfrm_User_Frame.resx
        │   │   │   ├── wfrm_User_General.cs
        │   │   │   ├── wfrm_User_General.resx
        │   │   │   ├── wfrm_User_Pop3Rem.cs
        │   │   │   ├── wfrm_User_Pop3Rem.resx
        │   │   │   ├── wfrm_Users.cs
        │   │   │   └── wfrm_Users.resx
        │   │   ├── MailServerManager.csproj
        │   │   ├── MailServerManager.csproj.user
        │   │   ├── MailServerManager.sln
        │   │   ├── MailServerManager.sln.old
        │   │   ├── MailServerManager.suo
        │   │   ├── MainX.cs
        │   │   ├── res
        │   │   │   ├── aliases.ico
        │   │   │   ├── doc_delete.ico
        │   │   │   ├── doc_edit.ico
        │   │   │   ├── doc_new.ico
        │   │   │   ├── domains.ico
        │   │   │   ├── routing.ico
        │   │   │   ├── save.ico
        │   │   │   ├── security.ico
        │   │   │   ├── server.ico
        │   │   │   ├── servers.ico
        │   │   │   ├── system.ico
        │   │   │   └── users.ico
        │   │   └── Tmp
        │   ├── RFC
        │   │   ├── DNSx
        │   │   │   ├── rfc1034.txt
        │   │   │   └── rfc1035.txt
        │   │   ├── FTPx
        │   │   │   ├── rfc2228.txt
        │   │   │   └── rfc959.txt
        │   │   ├── ICMP
        │   │   │   └── rfc792.txt
        │   │   ├── IMAPx
        │   │   │   ├── rfc2342_namespaces.txt
        │   │   │   ├── rfc2683.txt
        │   │   │   └── rfc3501.txt
        │   │   ├── MIME
        │   │   │   ├── 2045.txt
        │   │   │   ├── rfc1521_obsolete.txt
        │   │   │   └── rfc2049.txt
        │   │   ├── NNTPx
        │   │   │   ├── rfc0977.txt
        │   │   │   ├── rfc1036_article_format.txt
        │   │   │   └── rfc2980.txt
        │   │   ├── POP3x
        │   │   │   ├── rfc1734_pop3_AUTH.txt
        │   │   │   ├── RFC1939.htm
        │   │   │   └── rfc1939.txt
        │   │   ├── rfc1123.txt
        │   │   ├── rfc2595.txt
        │   │   ├── rfc2822.txt
        │   │   └── SMTPx
        │   │       ├── rfc1652.txt
        │   │       ├── rfc1869.txt
        │   │       ├── rfc1870_SizeExtention.txt
        │   │       ├── rfc1893_enhancedstatuscodes.txt
        │   │       ├── rfc2195_CRAM-MD5.txt
        │   │       ├── rfc2222.txt
        │   │       ├── rfc2554 - SMTP Service Extension for Authentication_files
        │   │       │   └── library.jpg
        │   │       ├── rfc2554 - SMTP Service Extension for Authentication.htm
        │   │       ├── rfc2821.txt
        │   │       ├── rfc2831_Digest-md5.txt
        │   │       ├── rfc2920_pipelining.txt
        │   │       └── rfc3030_chuncking.txt
        │   ├── ServerAPI
        │   │   ├── AssemblyInfo.cs
        │   │   ├── bin
        │   │   ├── _Core.cs
        │   │   ├── LumiSoft.MailServerAPI.xml
        │   │   ├── ServerAPI.cs
        │   │   ├── ServerAPI.csproj
        │   │   ├── ServerAPI.csproj.user
        │   │   ├── ServerAPI.sln
        │   │   ├── ServerAPI.suo
        │   │   ├── Stuff
        │   │   │   ├── HMACMD5.cs
        │   │   │   └── ISmtpMessageFilter.cs
        │   │   ├── WebServices
        │   │   │   ├── RemoteAdmin.asmx.cs
        │   │   │   └── RemoteAdmin.asmx.resx
        │   │   ├── WebServicesProxy
        │   │   │   ├── aMakeClassInternal.exe
        │   │   │   ├── a._MakeProxy.bat
        │   │   │   ├── RemoteAdmin.cs
        │   │   │   └── wsdl.exe
        │   │   └── WSqlCommand.cs
        │   ├── SQL_Database
        │   │   ├── MSSQL
        │   │   │   ├── default_data.sql
        │   │   │   ├── procedures.sql
        │   │   │   ├── tables.sql
        │   │   │   └── Upgrade
        │   │   │       ├── 072_to_073.sql
        │   │   │       ├── 07_to_071.sql
        │   │   │       └── rweadme.txt
        │   │   ├── PGSQL
        │   │   │   ├── default_data.sql
        │   │   │   ├── procedures.sql
        │   │   │   ├── procedures_todo.txt
        │   │   │   └── tables.sql
        │   │   └── WebMail
        │   │       ├── MSSQL
        │   │       │   ├── procedures.sql
        │   │       │   └── tables.sql
        │   │       ├── PGSQL
        │   │       │   ├── procedures.sql
        │   │       │   └── tables.sql
        │   │       └── readme.txt
        │   ├── Stuff
        │   │   └── NNTP
        │   │       ├── App.ico
        │   │       ├── AssemblyInfo.cs
        │   │       ├── bin
        │   │       │   └── Debug
        │   │       │       ├── LumiSoft.Net.dll
        │   │       │       ├── LumiSoft.Net.xml
        │   │       │       ├── NNTP.exe
        │   │       │       ├── NNTP.pdb
        │   │       │       └── Settings
        │   │       │           ├── NewsGroups.xml
        │   │       │           ├── PullFeeds.xml
        │   │       │           └── Settings.xml
        │   │       ├── Error.cs
        │   │       ├── Form1.cs
        │   │       ├── Form1.resx
        │   │       ├── NewsGroups.xml
        │   │       ├── NNTP
        │   │       │   ├── Client
        │   │       │   │   └── NNTP_Client.cs
        │   │       │   ├── NNTP_Pull.cs
        │   │       │   └── Server
        │   │       │       ├── NNTP_Article.cs
        │   │       │       ├── NNTP_Articles.cs
        │   │       │       ├── NNTP_Articles_eArgs.cs
        │   │       │       ├── NNTP_ListGroups_eArgs.cs
        │   │       │       ├── NNTP_NewsGroup.cs
        │   │       │       ├── NNTP_NewsGroups.cs
        │   │       │       ├── NNTP_Server.cs
        │   │       │       ├── NNTP_Server.resx
        │   │       │       └── NNTP_Session.cs
        │   │       ├── NNTP_API.cs
        │   │       ├── NNTP.csproj
        │   │       ├── NNTP.csproj.user
        │   │       ├── NNTP.sln
        │   │       ├── NNTP.suo
        │   │       ├── Parser
        │   │       │   └── HeaderParser.cs
        │   │       └── SCore.cs
        │   ├── ToDo.txt
        │   ├── version.txt
        │   └── WebMail
        │       ├── attachment.aspx
        │       ├── bin
        │       │   ├── LumiSoft.Net.dll
        │       │   ├── LumiSoft.Wisk.Text.dll
        │       │   ├── Npgsql.dll
        │       │   └── WText.xml
        │       ├── compose.aspx
        │       ├── contacts_add.aspx
        │       ├── contacts.aspx
        │       ├── contacts_read.aspx
        │       ├── contacts_select.aspx
        │       ├── data
        │       │   └── test.xml
        │       ├── default.aspx
        │       ├── folders_add.aspx
        │       ├── folders.aspx
        │       ├── folders_read.aspx
        │       ├── Global.asax
        │       ├── images
        │       │   ├── logo.gif
        │       │   ├── p_down.gif
        │       │   ├── p_left_d.gif
        │       │   ├── p_left.gif
        │       │   ├── p_left_ud.gif
        │       │   ├── p_left_u.gif
        │       │   ├── p_middle_d.gif
        │       │   ├── p_right_d.gif
        │       │   ├── p_right.gif
        │       │   ├── p_right_ud.gif
        │       │   ├── p_right_u.gif
        │       │   └── p_up.gif
        │       ├── inbox.aspx
        │       ├── inbox_read.aspx
        │       ├── login.aspx
        │       ├── settings.aspx
        │       └── style.css
        ├── Net
        │   ├── AssemblyInfo.cs
        │   ├── bin
        │   │   └── Release
        │   │       ├── LumiSoft.Net.dll
        │   │       └── LumiSoft.Net.xml
        │   ├── Dns
        │   │   ├── Answer_Classes.cs
        │   │   ├── Dns_Answer.cs
        │   │   ├── Dns_Answers.cs
        │   │   ├── DnsCache.cs
        │   │   ├── DnsEx.cs
        │   │   ├── Dns_Header.cs
        │   │   ├── Dns_Query.cs
        │   │   └── enums.cs
        │   ├── FTP
        │   │   └── Client
        │   │       └── FTP_Client.cs
        │   ├── ICMP
        │   │   └── Icmp.cs
        │   ├── IMAP
        │   │   ├── Client
        │   │   │   ├── IMAP_Client.cs
        │   │   │   └── IMAP_FetchItem.cs
        │   │   └── Server
        │   │       ├── AuthUser_EventArgs.cs
        │   │       ├── _FetchHelper.cs
        │   │       ├── Folder_EventArgs.cs
        │   │       ├── IMAP_Folder.cs
        │   │       ├── IMAP_Folders.cs
        │   │       ├── IMAP_Message.cs
        │   │       ├── IMAP_MessageFlags.cs
        │   │       ├── IMAP_Messages.cs
        │   │       ├── IMAP_Server.cs
        │   │       ├── IMAP_Server.resx
        │   │       ├── IMAP_Session.cs
        │   │       └── Message_EventArgs.cs
        │   ├── LumiSoft.Net.xml
        │   ├── Mime
        │   │   ├── Attachment.cs
        │   │   ├── Attachments.cs
        │   │   ├── MimeConstructor.cs
        │   │   └── Parser
        │   │       ├── eAddress.cs
        │   │       ├── MimeEntry.cs
        │   │       └── MimeParser.cs
        │   ├── Net_Core.cs
        │   ├── Net.csproj
        │   ├── Net.csproj.user
        │   ├── Net.sln
        │   ├── Net.suo
        │   ├── POP3
        │   │   ├── Client
        │   │   │   ├── POP3_Client.cs
        │   │   │   ├── POP3_MessageInfo.cs
        │   │   │   └── POP3_MessagesInfo.cs
        │   │   └── Server
        │   │       ├── AuthUser_EventArgs.cs
        │   │       ├── DeleteMessage_EventArgs.cs
        │   │       ├── GetMessage_EventArgs.cs
        │   │       ├── GetMessagesInfo_EventArgs.cs
        │   │       ├── GetTopLines_Eventargs.cs
        │   │       ├── POP3_Message.cs
        │   │       ├── POP3_Messages.cs
        │   │       ├── POP3_Server.cs
        │   │       ├── POP3_Server.resx
        │   │       └── POP3_Session.cs
        │   ├── ReadException.cs
        │   ├── ServersCore
        │   │   ├── commonDelegates.cs
        │   │   ├── Error_EventArgs.cs
        │   │   ├── _FixedStack.cs
        │   │   ├── Log_EventArgs.cs
        │   │   ├── _LogWriter.cs
        │   │   ├── _ParamParser.cs
        │   │   └── ValidateIP_EventArgs.cs
        │   ├── SMTP
        │   │   ├── BodyType.cs
        │   │   ├── Client
        │   │   │   ├── PartOfMessage_EventArgs.cs
        │   │   │   ├── SendJob_EventArgs.cs
        │   │   │   ├── SMTP_Client.cs
        │   │   │   └── SMTP_Error.cs
        │   │   └── Server
        │   │       ├── AuthUser_EventArgs.cs
        │   │       ├── _SMTP_Cmd_Validator.cs
        │   │       ├── SMTP_Server.cs
        │   │       ├── SMTP_Server.resx
        │   │       ├── SMTP_Session.cs
        │   │       ├── StoreMessage_EventArgs.cs
        │   │       ├── ValidateMailboxSize_EventArgs.cs
        │   │       ├── ValidateRecipient_EventArgs.cs
        │   │       └── ValidateSender_EventArgs.cs
        │   └── StreamLineReader.cs
        ├── NetHelp
        │   ├── Help
        │   │   └── LumiSoft.Net_Help.chm
        │   └── Untitled.ndoc
        └── UI
            ├── Help
            │   └── Images
            │       ├── outlookBarFullSelect.gif
            │       ├── outlookBar.gif
            │       ├── outlookBarIconSelect.gif
            │       ├── outlookBarSmallIcon.gif
            │       └── outlookBarStuckenItem.gif
            ├── Lib
            │   ├── AssemblyInfo.cs
            │   ├── bin
            │   │   └── Release
            │   │       ├── LumiSoft.UI.dll
            │   │       └── LumiSoft.UI.xml
            │   ├── Controls
            │   │   ├── enums.cs
            │   │   ├── WButton
            │   │   │   ├── WButton.cs
            │   │   │   └── WButton.resx
            │   │   ├── WButtonEdit
            │   │   │   ├── WButtonEdit.cs
            │   │   │   └── WButtonEdit.resx
            │   │   ├── WCheckBox
            │   │   │   ├── WCheckBox.cs
            │   │   │   └── WCheckBox.resx
            │   │   ├── WComboBox
            │   │   │   ├── WComboBox.cs
            │   │   │   ├── WComboBox.resx
            │   │   │   ├── WComboItem.cs
            │   │   │   ├── WComboListBox.cs
            │   │   │   ├── WComboPopUp.cs
            │   │   │   └── WComboPopUp.resx
            │   │   ├── WDatePicker
            │   │   │   ├── WDatePicker.cs
            │   │   │   ├── WDatePickerPopUp.cs
            │   │   │   ├── WDatePickerPopUp.resx
            │   │   │   ├── WDatePicker.resx
            │   │   │   ├── WMonthCalendar.cs
            │   │   │   └── WMonthCalendar.resx
            │   │   ├── WEditBox
            │   │   │   ├── WEditBox.cs
            │   │   │   ├── WEditBox_enums.cs
            │   │   │   └── WEditBox.resx
            │   │   ├── WFocusedCtrlBase.cs
            │   │   ├── WFocusedCtrlBase.resx
            │   │   ├── WFrame
            │   │   │   ├── WFrame.cs
            │   │   │   └── WFrame.resx
            │   │   ├── WImageDropDown
            │   │   │   ├── WImageDropDown.cs
            │   │   │   ├── WImageDropDownPopUp.cs
            │   │   │   ├── WImageDropDownPopUp.resx
            │   │   │   └── WImageDropDown.resx
            │   │   ├── WLabel
            │   │   │   ├── WLabel.cs
            │   │   │   └── WLabel.resx
            │   │   ├── WLine
            │   │   │   ├── WLine.cs
            │   │   │   └── WLine.resx
            │   │   ├── WListBox
            │   │   │   ├── WListBox.cs
            │   │   │   └── WListBox.resx
            │   │   ├── WMenuItem
            │   │   │   ├── WMenuItem.cs
            │   │   │   └── WMenuItem.resx
            │   │   ├── WOutlookBar
            │   │   │   ├── BarClicked_EventArgs.cs
            │   │   │   ├── Bar.cs
            │   │   │   ├── Bars.cs
            │   │   │   ├── HitInfo.cs
            │   │   │   ├── ItemClicked_EventArgs.cs
            │   │   │   ├── Item.cs
            │   │   │   ├── Items.cs
            │   │   │   ├── WOutlookBar.cs
            │   │   │   └── WOutlookBar.resx
            │   │   ├── WPictureBox
            │   │   │   ├── WPictureBox.cs
            │   │   │   └── WPictureBox.resx
            │   │   ├── WPopUpFormBase.cs
            │   │   ├── WPopUpFormBase.resx
            │   │   ├── WRichEditBox
            │   │   │   ├── WRichEditBox.cs
            │   │   │   └── WRichEditBox.resx
            │   │   ├── WSpinEdit
            │   │   │   ├── WSpinEdit.cs
            │   │   │   └── WSpinEdit.resx
            │   │   ├── WTabs
            │   │   │   ├── TabChanged_EventArgs.cs
            │   │   │   ├── Tab.cs
            │   │   │   ├── Tabs.cs
            │   │   │   ├── WTabBar.cs
            │   │   │   ├── WTabBar.resx
            │   │   │   ├── WTab.cs
            │   │   │   └── WTab.resx
            │   │   ├── WTextBoxBase.cs
            │   │   ├── WTextBoxBase.resx
            │   │   ├── WTime
            │   │   │   ├── WTime.cs
            │   │   │   └── WTime.resx
            │   │   ├── WToolBar
            │   │   │   ├── WToolBar.cs
            │   │   │   └── WToolBar.resx
            │   │   └── WTree
            │   │       ├── WTree.cs
            │   │       └── WTree.resx
            │   ├── Core.cs
            │   ├── delegates.cs
            │   ├── Help
            │   │   └── Eng
            │   ├── IWSerialiser.cs
            │   ├── LumiSoft.UI.csproj
            │   ├── LumiSoft.UI.csproj.user
            │   ├── LumiSoft.UI.sln
            │   ├── LumiSoft.UI.suo
            │   ├── LumiSoft.UI.xml
            │   ├── Painter.cs
            │   ├── res
            │   │   ├── check.ico
            │   │   ├── down.ico
            │   │   ├── first.ico
            │   │   ├── last.ico
            │   │   ├── next.ico
            │   │   ├── prev.ico
            │   │   └── up.ico
            │   ├── ViewStyle.cs
            │   ├── Win32
            │   │   ├── Enums.cs
            │   │   └── User32.cs
            │   └── WSerializer.cs
            ├── TestUI
            │   ├── App.ico
            │   ├── AssemblyInfo.cs
            │   ├── bin
            │   │   └── Debug
            │   │       ├── LumiSoft.UI.dll
            │   │       ├── LumiSoft.UI.xml
            │   │       ├── TestUI.exe
            │   │       └── TestUI.pdb
            │   ├── Form1.cs
            │   ├── Form1.resx
            │   ├── MainForm.cs
            │   ├── MainForm.resx
            │   ├── MainX.cs
            │   ├── TabMain.cs
            │   ├── TabMain.resx
            │   ├── TabPage1.cs
            │   ├── TabPage1.resx
            │   ├── TabPage2.cs
            │   ├── TabPage2.resx
            │   ├── TestUI.csproj
            │   ├── TestUI.csproj.user
            │   ├── TestUI.sln
            │   ├── TestUI.sln.old
            │   └── TestUI.suo
            ├── ToDo.txt
            ├── Tools
            │   └── UI_rem_ISupportInitialize
            │       ├── App.ico
            │       ├── AssemblyInfo.cs
            │       ├── bin
            │       │   └── Debug
            │       │       ├── notHandled.txt
            │       │       ├── UI_rem_ISupportInitialize.exe
            │       │       └── UI_rem_ISupportInitialize.pdb
            │       ├── Form1.cs
            │       ├── Form1.resx
            │       ├── UI_rem_ISupportInitialize.csproj
            │       ├── UI_rem_ISupportInitialize.csproj.user
            │       ├── UI_rem_ISupportInitialize.sln
            │       └── UI_rem_ISupportInitialize.suo
            └── UI_version.txt

137 directories, 554 files

实例下载地址

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警