├── Licences
├── Icon Licence.txt
├── Json.NET Licence.txt
├── Autofac License.txt
├── Messagebox Licence.txt
└── StringTemplate Licence.txt
├── Installer
├── SFX
│ ├── Create SFX.bat
│ ├── 7zsd.sfx
│ └── config.txt
└── FAP.sln
├── libs
├── Autofac
│ ├── Autofac.dll
│ ├── Autofac.Configuration.dll
│ ├── Autofac.Integration.Wcf.dll
│ ├── Autofac.Integration.Web.dll
│ └── Autofac License.txt
├── HttpServer
│ ├── httpserver.snk
│ ├── app.config
│ ├── IServiceResolver.cs
│ ├── Sessions
│ │ ├── ISessionProvider.cs
│ │ ├── Session.cs
│ │ └── ISessionStore.cs
│ ├── Modules
│ │ └── IModule.cs
│ ├── ComponentAttribute.cs
│ ├── HttpServer.csproj.user
│ ├── Authentication
│ │ ├── IAuthenticationProvider.cs
│ │ └── IAuthenticator.cs
│ ├── Headers
│ │ ├── IHeaderCollection.cs
│ │ ├── IHeader.cs
│ │ ├── Parsers
│ │ │ ├── AuthorizationParser.cs
│ │ │ ├── IHeaderParser.cs
│ │ │ ├── ParserForAttribute.cs
│ │ │ ├── StringParser.cs
│ │ │ ├── NumericHeaderParser.cs
│ │ │ ├── ContentTypeParser.cs
│ │ │ └── DateParser.cs
│ │ └── StringHeader.cs
│ ├── Logging
│ │ ├── ILogFilter.cs
│ │ ├── ILogFactory.cs
│ │ ├── LogLevel.cs
│ │ ├── ConsoleLogFactory.cs
│ │ ├── NullLogFactory.cs
│ │ └── LogFactory.cs
│ ├── Routing
│ │ └── IRouter.cs
│ ├── ExceptionEventArgs.cs
│ ├── RequestContext.cs
│ ├── Messages
│ │ ├── FactoryRequestEventArgs.cs
│ │ └── Parser
│ │ │ ├── FactoryResponseEventArgs.cs
│ │ │ ├── ResponseLineEventArgs.cs
│ │ │ ├── ParserException.cs
│ │ │ └── RequestEventArgs.cs
│ ├── IHttpFactory.cs
│ ├── HttpFile.cs
│ ├── BodyDecoders
│ │ ├── DecodedData.cs
│ │ └── IBodyDecoder.cs
│ ├── Resources
│ │ └── Resource.cs
│ ├── SocketFilterEventArgs.cs
│ ├── BadRequestException.cs
│ ├── NotFoundException.cs
│ ├── ProcessingResult.cs
│ ├── InternalServerException.cs
│ ├── AuthenticationRequiredException.cs
│ ├── Tools
│ │ └── Properties
│ │ │ ├── EmitReflector.cs
│ │ │ └── PropertyProvider.cs
│ ├── ForbiddenException.cs
│ ├── ErrorPageEventArgs.cs
│ └── HttpException.cs
├── Bonjour
│ └── Interop.Bonjour.dll
├── protobuf-net
│ └── protobuf-net.dll
├── Json.NET
│ ├── Newtonsoft.Json.Net35.dll
│ └── Newtonsoft.Json.Net35.pdb
├── Odyssey
│ ├── Effects
│ │ ├── GrayscaleEffect.ps
│ │ └── GrayscaleEffect.fx
│ ├── app.config
│ ├── Properties
│ │ ├── Settings.settings
│ │ └── Settings.Designer.cs
│ ├── OutlookBar
│ │ ├── ExpandPosition.cs
│ │ └── OverflowMenuCreatedEventArgs.cs
│ ├── Common
│ │ ├── IKeyTipControl.cs
│ │ ├── Skins.cs
│ │ ├── SkinId.cs
│ │ ├── EmptyStringVisibilityConverter.cs
│ │ └── PopupHelper.cs
│ ├── Odyssey.csproj.vspscc
│ ├── Themes
│ │ ├── Classic.xaml
│ │ ├── Luna.Homestead.xaml
│ │ ├── Luna.Metallic.xaml
│ │ ├── Aero.NormalColor.xaml
│ │ ├── Luna.NormalColor.xaml
│ │ ├── OutlookBar
│ │ │ └── Generic.xaml
│ │ ├── Ribbon
│ │ │ ├── RibbonHLChromeStyle.xaml
│ │ │ └── InternalRibbonButton.xaml
│ │ └── Generic.xaml
│ ├── Ribbon
│ │ ├── Classes
│ │ │ ├── IRibbonSize.cs
│ │ │ ├── RibbonBarAlignment.cs
│ │ │ ├── QAItemPlacement.cs
│ │ │ ├── RibbonWindowCornerMode.cs
│ │ │ ├── QAPlacement.cs
│ │ │ ├── RibbonGalleryColumns.cs
│ │ │ ├── RibbonSizeCollection.cs
│ │ │ ├── BoolConverter.cs
│ │ │ ├── RibbonSize.cs
│ │ │ └── RibbonGroupReductionOrderConverter.cs
│ │ ├── Interfaces
│ │ │ ├── IRibbonControl.cs
│ │ │ ├── IRibbonLargeControl.cs
│ │ │ ├── IRibbonStretch.cs
│ │ │ ├── IRibbonGallery.cs
│ │ │ └── IRibbonButton.cs
│ │ ├── EventArgs
│ │ │ └── SelectedTabIndexChangedEvent.cs
│ │ └── Controls
│ │ │ ├── RibbonBar.Handlers.cs
│ │ │ ├── RibbonSeparator.cs
│ │ │ ├── RibbonButtonStyle.cs
│ │ │ ├── RibbonQAToolbarPanel.cs
│ │ │ ├── RibbonFlowGroup.cs
│ │ │ ├── RibbonComboBoxItem.cs
│ │ │ └── RibbonGroup.Commands.cs
│ ├── Skins
│ │ ├── VistaSkin.xaml
│ │ ├── Win7Skin.xaml
│ │ ├── BlackSkin.xaml
│ │ ├── SilverSkin.xaml
│ │ └── BlueSkin.xaml
│ └── Controls
│ │ ├── ClickableTreeView.cs
│ │ └── OdcButton.cs
├── StringTemplate
│ ├── Antlr3.Runtime.dll
│ ├── Antlr3.Runtime.Debug.dll
│ └── Antlr3.StringTemplate.dll
├── Messagebox
│ └── BlogsPrajeesh.BlogSpot.WPFControls.dll
├── WpfApplicationFramework
│ ├── ManagedExtensibilityFramework
│ │ └── System.ComponentModel.Composition.dll
│ ├── WpfApplicationFramework
│ │ ├── WpfApplicationFramework
│ │ │ ├── Applications
│ │ │ │ ├── IView.cs
│ │ │ │ ├── DispatcherHelper.cs
│ │ │ │ ├── Services
│ │ │ │ │ └── IMessageService.cs
│ │ │ │ ├── PropertyChangedEventListener.cs
│ │ │ │ └── CollectionChangedEventListener.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── WafConfiguration.cs
│ │ │ └── GlobalSuppressions.cs
│ │ ├── CodeAnalysisDictionary.xml
│ │ ├── WpfApplicationFramework.UnitTesting
│ │ │ ├── GlobalSuppressions.cs
│ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ └── WpfApplicationFramework.Test
│ │ │ └── Applications
│ │ │ ├── Services
│ │ │ ├── FileDialogResultTest.cs
│ │ │ └── FileTypeTest.cs
│ │ │ ├── ViewModelTest.cs
│ │ │ └── ApplicationInfoTest.cs
│ ├── Code Snippets
│ │ ├── Readme.txt
│ │ └── WAF Snippets
│ │ │ └── wafviewmodel.snippet
│ ├── WpfApplicationFramework.vsmdi
│ └── Documentation
│ │ └── Checklist.txt
└── LinqToWmi
│ ├── LinqToWmi.ClassGenerator
│ ├── LinqToWmi.ClassGenerator.csproj.user
│ ├── Builder
│ │ └── WmiObjectQuery.cs
│ ├── Arguments.cs
│ └── ArgumentParser
│ │ ├── ArgumentAttribute.cs
│ │ └── ArgumentParseException.cs
│ └── LinqToWmi.Core
│ ├── Visitor
│ ├── IVisitor.cs
│ └── AbstractVisitor.cs
│ └── WMI
│ ├── IWmiQuery.cs
│ ├── Visitors
│ ├── ConstantVisitor.cs
│ ├── BinaryVisitor.cs
│ └── MemberVisitor.cs
│ ├── WmiExtensionMethods.cs
│ └── WmiObjectTypeAttribute.cs
├── UI
├── Client.WPF
│ ├── Images
│ │ ├── Cog.png
│ │ ├── Search.png
│ │ ├── Upload.png
│ │ ├── folder.png
│ │ ├── newtab.ico
│ │ ├── Chart Bar.png
│ │ ├── Download.png
│ │ ├── Folder Sync.png
│ │ ├── Default_Avatar.png
│ │ ├── Drawer Closed.png
│ │ ├── folder-yellow.ico
│ │ ├── originals
│ │ │ └── defaultavatar.png
│ │ ├── splash screens
│ │ │ ├── 1209850323723.jpg
│ │ │ ├── 1242976218726.jpg
│ │ │ ├── 1243840487105.jpg
│ │ │ ├── 1253754897671.jpg
│ │ │ ├── 1256029184403.jpg
│ │ │ └── 1274249428281.jpg
│ │ └── src.txt
│ ├── Web.Help
│ │ ├── css
│ │ │ ├── screen.css
│ │ │ └── print.css
│ │ └── images
│ │ │ ├── Cog.png
│ │ │ ├── web.png
│ │ │ ├── Search.png
│ │ │ ├── client.png
│ │ │ ├── Chart Bar.png
│ │ │ ├── Folder Sync.png
│ │ │ └── Drawer Closed.png
│ ├── packages.config
│ ├── app.config
│ ├── FolderItem.cs
│ ├── Properties
│ │ ├── Settings.settings
│ │ └── Settings.Designer.cs
│ ├── merge.bat
│ ├── NLog.config
│ ├── Panels
│ │ ├── WebPanel.xaml
│ │ ├── LogPanel.xaml
│ │ ├── UserInfoPanel.xaml
│ │ ├── ComparePanel.xaml.cs
│ │ ├── UserInfoPanel.xaml.cs
│ │ └── WebPanel.xaml.cs
│ ├── Window1.xaml.cs
│ ├── InterfaceSelection.xaml.cs
│ ├── InputWindow.xaml
│ ├── TabEventArgs.cs
│ ├── Window1.xaml
│ ├── SessionTypeConverter.cs
│ └── MessageBox.xaml
├── Server.Console
│ ├── folder-yellow.ico
│ ├── packages.config
│ ├── app.config
│ ├── NLog.config
│ ├── SharesView.cs
│ ├── Query.cs
│ ├── MessageService.cs
│ └── InterfaceSelectionView.cs
└── Client.Console
│ ├── app.config
│ └── Program.cs
├── FAP.Domain
├── Web.Resources
│ ├── css
│ │ └── fap.css
│ ├── favicon.ico
│ └── images
│ │ ├── fap.png
│ │ ├── folder.png
│ │ ├── sort_asc.png
│ │ ├── sort_both.png
│ │ ├── sort_desc.png
│ │ ├── back_disabled.jpg
│ │ ├── back_enabled.jpg
│ │ ├── forward_disabled.jpg
│ │ ├── forward_enabled.jpg
│ │ ├── sort_asc_disabled.png
│ │ └── sort_desc_disabled.png
├── packages.config
├── Net
│ ├── LanPeer.cs
│ └── DetectedNode.cs
├── Services
│ ├── TemplateEngine.cs
│ ├── BonjourAnnouncerService.cs
│ └── UpdateCheckerService.cs
├── Verbs
│ ├── LocalDownload.cs
│ ├── Multicast
│ │ └── WhoVerb.cs
│ ├── IVerb.cs
│ └── ConversationVerb.cs
├── Handlers
│ └── IFAPHandler.cs
└── Entities
│ ├── ITransferWorker.cs
│ └── NetworkInterface.cs
├── FAP.Application
├── packages.config
├── Views
│ ├── ISearchView.cs
│ ├── IWebPanel.cs
│ ├── ILogView.cs
│ ├── IUserInfo.cs
│ ├── IBrowserView.cs
│ ├── ICompareView.cs
│ ├── ISettingsView.cs
│ ├── ISharesView.cs
│ ├── IDownloadQueue.cs
│ ├── IConverstationView.cs
│ ├── IQuery.cs
│ ├── ITrayIconView.cs
│ ├── IInterfaceSelectionView.cs
│ ├── IMessageBoxView.cs
│ ├── IPopupWindow.cs
│ └── IMainWindow.cs
└── ViewModel
│ ├── WebViewModel.cs
│ └── UserInfoViewModel.cs
├── FAP.Foundation
├── packages.config
├── Services
│ ├── IDService.cs
│ └── SingleInstanceService.cs
├── AsyncOperation.cs
└── BaseEntity.cs
├── FAP.Network
├── packages.config
├── Services
│ └── MulticastCommon.cs
└── NetworkModule.cs
├── .gitignore
├── Web
└── updates.php
└── Readme.md
/Licences/Icon Licence.txt:
--------------------------------------------------------------------------------
1 | Yellow folder icon by fasticon.com
--------------------------------------------------------------------------------
/Installer/SFX/Create SFX.bat:
--------------------------------------------------------------------------------
1 | copy /b 7zSD.sfx + config.txt + DISK1.7z FAP.exe
--------------------------------------------------------------------------------
/Installer/SFX/7zsd.sfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/Installer/SFX/7zsd.sfx
--------------------------------------------------------------------------------
/libs/Autofac/Autofac.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Autofac/Autofac.dll
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/Cog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/Cog.png
--------------------------------------------------------------------------------
/libs/HttpServer/httpserver.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/HttpServer/httpserver.snk
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/Search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/Search.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/Upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/Upload.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/folder.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/newtab.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/newtab.ico
--------------------------------------------------------------------------------
/libs/Bonjour/Interop.Bonjour.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Bonjour/Interop.Bonjour.dll
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/Chart Bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/Chart Bar.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/Download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/Download.png
--------------------------------------------------------------------------------
/UI/Server.Console/folder-yellow.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Server.Console/folder-yellow.ico
--------------------------------------------------------------------------------
/libs/protobuf-net/protobuf-net.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/protobuf-net/protobuf-net.dll
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/css/fap.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/css/fap.css
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/favicon.ico
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/Folder Sync.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/Folder Sync.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Web.Help/css/screen.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Web.Help/css/screen.css
--------------------------------------------------------------------------------
/UI/Client.WPF/Web.Help/images/Cog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Web.Help/images/Cog.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Web.Help/images/web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Web.Help/images/web.png
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/fap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/fap.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/Default_Avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/Default_Avatar.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/Drawer Closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/Drawer Closed.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/folder-yellow.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/folder-yellow.ico
--------------------------------------------------------------------------------
/UI/Client.WPF/Web.Help/images/Search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Web.Help/images/Search.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Web.Help/images/client.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Web.Help/images/client.png
--------------------------------------------------------------------------------
/libs/Autofac/Autofac.Configuration.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Autofac/Autofac.Configuration.dll
--------------------------------------------------------------------------------
/libs/Autofac/Autofac.Integration.Wcf.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Autofac/Autofac.Integration.Wcf.dll
--------------------------------------------------------------------------------
/libs/Autofac/Autofac.Integration.Web.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Autofac/Autofac.Integration.Web.dll
--------------------------------------------------------------------------------
/libs/Json.NET/Newtonsoft.Json.Net35.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Json.NET/Newtonsoft.Json.Net35.dll
--------------------------------------------------------------------------------
/libs/Json.NET/Newtonsoft.Json.Net35.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Json.NET/Newtonsoft.Json.Net35.pdb
--------------------------------------------------------------------------------
/libs/Odyssey/Effects/GrayscaleEffect.ps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Odyssey/Effects/GrayscaleEffect.ps
--------------------------------------------------------------------------------
/libs/StringTemplate/Antlr3.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/StringTemplate/Antlr3.Runtime.dll
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/folder.png
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/sort_asc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/sort_asc.png
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/sort_both.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/sort_both.png
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/sort_desc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/sort_desc.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Web.Help/images/Chart Bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Web.Help/images/Chart Bar.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Web.Help/images/Folder Sync.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Web.Help/images/Folder Sync.png
--------------------------------------------------------------------------------
/libs/StringTemplate/Antlr3.Runtime.Debug.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/StringTemplate/Antlr3.Runtime.Debug.dll
--------------------------------------------------------------------------------
/libs/StringTemplate/Antlr3.StringTemplate.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/StringTemplate/Antlr3.StringTemplate.dll
--------------------------------------------------------------------------------
/UI/Client.WPF/Web.Help/images/Drawer Closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Web.Help/images/Drawer Closed.png
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/back_disabled.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/back_disabled.jpg
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/back_enabled.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/back_enabled.jpg
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/originals/defaultavatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/originals/defaultavatar.png
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/forward_disabled.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/forward_disabled.jpg
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/forward_enabled.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/forward_enabled.jpg
--------------------------------------------------------------------------------
/Installer/SFX/config.txt:
--------------------------------------------------------------------------------
1 | ;!@Install@!UTF-8!
2 | RunProgram="setup.exe"
3 | ExtractTitle="Extracting installer.."
4 | GUIMode="1"
5 | ;!@InstallEnd@!
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/sort_asc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/sort_asc_disabled.png
--------------------------------------------------------------------------------
/FAP.Domain/Web.Resources/images/sort_desc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/FAP.Domain/Web.Resources/images/sort_desc_disabled.png
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/splash screens/1209850323723.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/splash screens/1209850323723.jpg
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/splash screens/1242976218726.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/splash screens/1242976218726.jpg
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/splash screens/1243840487105.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/splash screens/1243840487105.jpg
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/splash screens/1253754897671.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/splash screens/1253754897671.jpg
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/splash screens/1256029184403.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/splash screens/1256029184403.jpg
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/splash screens/1274249428281.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/UI/Client.WPF/Images/splash screens/1274249428281.jpg
--------------------------------------------------------------------------------
/libs/Messagebox/BlogsPrajeesh.BlogSpot.WPFControls.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/Messagebox/BlogsPrajeesh.BlogSpot.WPFControls.dll
--------------------------------------------------------------------------------
/FAP.Domain/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/FAP.Application/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/FAP.Foundation/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/FAP.Network/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/UI/Client.WPF/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/UI/Server.Console/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/libs/HttpServer/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/FAP.Application/Views/ISearchView.cs:
--------------------------------------------------------------------------------
1 | using System.Waf.Applications;
2 |
3 | namespace FAP.Application.Views
4 | {
5 | public interface ISearchView : IView
6 | {
7 | }
8 | }
--------------------------------------------------------------------------------
/UI/Client.WPF/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/UI/Client.Console/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/UI/Server.Console/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/UI/Server.Console/NLog.config:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/libs/HttpServer/IServiceResolver.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace HttpServer
6 | {
7 | class IServiceResolver
8 | {
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/FAP.Application/Views/IWebPanel.cs:
--------------------------------------------------------------------------------
1 | using System.Waf.Applications;
2 |
3 | namespace FAP.Application.Views
4 | {
5 | public interface IWebPanel : IView
6 | {
7 | string Location { set; get; }
8 | }
9 | }
--------------------------------------------------------------------------------
/UI/Client.WPF/FolderItem.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Windows.Media;
6 |
7 | namespace Fap.Presentation
8 | {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/libs/WpfApplicationFramework/ManagedExtensibilityFramework/System.ComponentModel.Composition.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kayomani/FAP/HEAD/libs/WpfApplicationFramework/ManagedExtensibilityFramework/System.ComponentModel.Composition.dll
--------------------------------------------------------------------------------
/libs/HttpServer/Sessions/ISessionProvider.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace HttpServer.Sessions
6 | {
7 | class ISessionProvider
8 | {
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/libs/Odyssey/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/libs/Odyssey/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/UI/Client.WPF/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UI/Client.WPF/merge.bat:
--------------------------------------------------------------------------------
1 | mkdir merge
2 | ilmerge /out:merge/Fap.Presentation.exe Fap.Presentation.exe Autofac.dll ContinuousLinq.dll LinqToWmi.Core.dll WpfApplicationFramework.dll Fap.Foundation.dll Fap.Network.dll Fap.Domain.dll Fap.Application.dll
3 | copy Odyssey.dll merge
4 | pause
--------------------------------------------------------------------------------
/libs/Odyssey/OutlookBar/ExpandPosition.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | namespace Odyssey.Controls
7 | {
8 | public enum ExpandPosition
9 | {
10 | Left,
11 | Right
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio.
3 | ################################################################################
4 |
5 | *\bin\*
6 | *\obj\*
7 | *\packages\*
8 | *.suo
--------------------------------------------------------------------------------
/libs/Odyssey/Common/IKeyTipControl.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | namespace Odyssey.Controls.Interfaces
7 | {
8 | public interface IKeyTipControl
9 | {
10 | void ExecuteKeyTip();
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/FAP.Domain/Net/LanPeer.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace FAP.Domain.Net
4 | {
5 | public class LanPeer
6 | {
7 | public DetectedNode Node { set; get; }
8 | public DateTime LastConnectionTime { set; get; }
9 | public DateTime LastUpdate { set; get; }
10 | }
11 | }
--------------------------------------------------------------------------------
/libs/LinqToWmi/LinqToWmi.ClassGenerator/LinqToWmi.ClassGenerator.csproj.user:
--------------------------------------------------------------------------------
1 |
2 |
3 | /wmi:Win32_ComputerSystem
4 |
5 |
--------------------------------------------------------------------------------
/libs/Odyssey/Odyssey.csproj.vspscc:
--------------------------------------------------------------------------------
1 | ""
2 | {
3 | "FILE_VERSION" = "9237"
4 | "ENLISTMENT_CHOICE" = "NEVER"
5 | "PROJECT_FILE_RELATIVE_PATH" = "relative:Odyssey\\Odyssey"
6 | "NUMBER_OF_EXCLUDED_FILES" = "0"
7 | "ORIGINAL_PROJECT_FILE_PATH" = ""
8 | "NUMBER_OF_NESTED_PROJECTS" = "0"
9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER"
10 | }
11 |
--------------------------------------------------------------------------------
/UI/Client.WPF/Images/src.txt:
--------------------------------------------------------------------------------
1 | folder-yellow.ico http://www.iconarchive.com/category/computer/solid-icons-by-fasticon.html
2 | Default_Avatar.png http://blogs.tennessean.com/politics/files/2009/08/paper_bag_head_275.jpg
3 |
4 | http://www.freeiconsweb.com/Free-Downloads.asp?id=1302
5 | Chart Bar.png
6 | Cog.png
7 | Drawer Closed.png
8 | Folder Sync.png
9 | Search.png
--------------------------------------------------------------------------------
/libs/Odyssey/Themes/Classic.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/libs/Odyssey/Ribbon/Classes/IRibbonSize.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | namespace Odyssey.Controls
7 | {
8 | public interface IRibbonSize
9 | {
10 | RibbonSize Appearance { get; set; }
11 |
12 | RibbonSize PreferedAppearance { get; }
13 |
14 | RibbonSize MinAppearance { get; }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/libs/Odyssey/Themes/Luna.Homestead.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/libs/Odyssey/Themes/Luna.Metallic.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/libs/Odyssey/Themes/Aero.NormalColor.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/libs/Odyssey/Themes/Luna.NormalColor.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/libs/WpfApplicationFramework/WpfApplicationFramework/WpfApplicationFramework/Applications/IView.cs:
--------------------------------------------------------------------------------
1 | namespace System.Waf.Applications
2 | {
3 | ///
4 | /// Represents a view
5 | ///
6 | public interface IView
7 | {
8 | ///
9 | /// Gets or sets the data context of the view.
10 | ///
11 | object DataContext { get; set; }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/libs/LinqToWmi/LinqToWmi.Core/Visitor/IVisitor.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Linq.Expressions;
3 |
4 | namespace LinqToWmi.Core.WMI
5 | {
6 | ///
7 | /// Basic Visitor interface to work with
8 | ///
9 | interface IVisitor
10 | {
11 | Type ExpressionType { get; }
12 | string Visit(Expression ex);
13 | VistorContext Context { get; set; }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/libs/Odyssey/Common/Skins.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | #region Copyright
7 | // Odyssey.Controls.Ribbonbar
8 | // (c) copyright 2009 Thomas Gerber
9 | // This source code and files, is licensed under The Microsoft Public License (Ms-PL)
10 | #endregion
11 | namespace Odyssey.Controls
12 | {
13 | public static class Skins
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/libs/WpfApplicationFramework/WpfApplicationFramework/CodeAnalysisDictionary.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Waf
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/libs/LinqToWmi/LinqToWmi.Core/WMI/IWmiQuery.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Linq.Expressions;
3 |
4 | namespace LinqToWmi.Core.WMI
5 | {
6 | ///
7 | /// Generic interface for WmiQuery provides access to Expression and Type for our generic concrete types.
8 | ///
9 | public interface IWmiQuery
10 | {
11 | Expression WhereExpression { get; set; }
12 |
13 | Type Type { get; }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/libs/WpfApplicationFramework/Code Snippets/Readme.txt:
--------------------------------------------------------------------------------
1 | Readme
2 | ------
3 |
4 | This project contains C# code snippets for developing applications based on the WPF Application Framework (WAF).
5 | All code snippets start with "waf".
6 |
7 |
8 | Activate the code snippets:
9 |
10 | 1) Start Visual Studio 2008
11 | 2) Click on "Tools" and then on "Code Snippets Manager..."
12 | 3) Click on "Add" and choose the "WAF Snippets" directory of this project.
13 |
--------------------------------------------------------------------------------
/libs/HttpServer/Modules/IModule.cs:
--------------------------------------------------------------------------------
1 | namespace HttpServer.Modules
2 | {
3 | ///
4 | /// HTTP Module
5 | ///
6 | public interface IModule
7 | {
8 | ///
9 | /// Process a request.
10 | ///
11 | /// Request information
12 | /// What to do next.
13 | ProcessingResult Process(RequestContext context);
14 | }
15 | }
--------------------------------------------------------------------------------
/libs/HttpServer/ComponentAttribute.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace HttpServer
6 | {
7 | ///
8 | /// Component that should be registered in the container.
9 | ///
10 | ///
11 | /// Register using all interfaces that is specified in this assembly.
12 | ///
13 | public class ComponentAttribute : Attribute
14 | {
15 |
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/libs/Odyssey/Ribbon/Interfaces/IRibbonControl.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | #region Copyright
7 | // Odyssey.Controls.Ribbonbar
8 | // (c) copyright 2009 Thomas Gerber
9 | // This source code and files, is licensed under The Microsoft Public License (Ms-PL)
10 | #endregion
11 | namespace Odyssey.Controls.Ribbon.Interfaces
12 | {
13 | public interface IRibbonControl
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/UI/Client.WPF/NLog.config:
--------------------------------------------------------------------------------
1 |
2 |
4 |
14 |
--------------------------------------------------------------------------------
/libs/HttpServer/HttpServer.csproj.user:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | en-US
11 | false
12 |
13 |
--------------------------------------------------------------------------------
/libs/Odyssey/Skins/VistaSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/libs/Odyssey/Skins/Win7Skin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/FAP.Application/ViewModel/WebViewModel.cs:
--------------------------------------------------------------------------------
1 | using System.Waf.Applications;
2 | using FAP.Application.Views;
3 |
4 | namespace FAP.Application.ViewModel
5 | {
6 | public class WebViewModel : ViewModel
7 | {
8 | public WebViewModel(IWebPanel view)
9 | : base(view)
10 | {
11 | }
12 |
13 | public string Location
14 | {
15 | set { ViewCore.Location = value; }
16 | get { return ViewCore.Location; }
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/libs/Odyssey/Ribbon/Classes/RibbonBarAlignment.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | #region Copyright
7 | // Odyssey.Controls.Ribbonbar
8 | // (c) copyright 2009 Thomas Gerber
9 | // This source code and files, is licensed under The Microsoft Public License (Ms-PL)
10 | #endregion
11 | namespace Odyssey.Controls
12 | {
13 | public enum RibbonBarAlignment
14 | {
15 | Full,
16 | Left,
17 | Right
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/libs/HttpServer/Authentication/IAuthenticationProvider.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace HttpServer.Authentication
6 | {
7 | ///
8 | /// Used to authenticate users
9 | ///
10 | ///
11 | /// Authentication is requested by throwing
12 | ///
13 | public interface IAuthenticationProvider
14 | {
15 | void RequestAuthentication(IHttpContext context, string realm);
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/libs/Odyssey/Skins/BlackSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/libs/Odyssey/Skins/SilverSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/libs/Odyssey/Ribbon/Classes/QAItemPlacement.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | #region Copyright
7 | // Odyssey.Controls.Ribbonbar
8 | // (c) copyright 2009 Thomas Gerber
9 | // This source code and files, is licensed under The Microsoft Public License (Ms-PL)
10 | #endregion
11 | namespace Odyssey.Controls
12 | {
13 | public enum QAItemPlacement
14 | {
15 | ToolBar=1,
16 | Menu=2,
17 | ToolBarAndMenu=3
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/libs/Odyssey/Ribbon/Classes/RibbonWindowCornerMode.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | #region Copyright
7 | // Odyssey.Controls.Ribbonbar
8 | // (c) copyright 2009 Thomas Gerber
9 | // This source code and files, is licensed under The Microsoft Public License (Ms-PL)
10 | #endregion
11 | namespace Odyssey.Controls.Classes
12 | {
13 | public enum RibbonWindowCornerMode
14 | {
15 | Top=1,
16 | All=2,
17 | None=0
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Web/updates.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/libs/WpfApplicationFramework/WpfApplicationFramework.vsmdi:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/libs/Odyssey/Effects/GrayscaleEffect.fx:
--------------------------------------------------------------------------------
1 | sampler2D implicitInput : register(s0);
2 | float factor : register(c0);
3 |
4 | float4 main(float2 uv : TEXCOORD) : COLOR
5 | {
6 | float4 color = tex2D(implicitInput, uv);
7 | float gray = color.r * 0.3 + color.g * 0.59 + color.b *0.11;
8 |
9 | float4 result;
10 | result.r = (color.r - gray) * factor + gray;
11 | result.g = (color.g - gray) * factor + gray;
12 | result.b = (color.b - gray) * factor + gray;
13 | result.a = color.a;
14 |
15 | return result;
16 | }
--------------------------------------------------------------------------------
/libs/Odyssey/Common/SkinId.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | #region Copyright
7 | // Odyssey.Controls.Ribbonbar
8 | // (c) copyright 2009 Thomas Gerber
9 | // This source code and files, is licensed under The Microsoft Public License (Ms-PL)
10 | #endregion
11 | namespace Odyssey.Controls.Classes
12 | {
13 | public enum SkinId
14 | {
15 | OfficeBlue,
16 | OfficeSilver,
17 | OfficeBlack,
18 | Windows7,
19 | Vista
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/libs/HttpServer/Headers/IHeaderCollection.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 |
3 | namespace HttpServer.Headers
4 | {
5 | ///
6 | /// Collection of headers.
7 | ///
8 | public interface IHeaderCollection : IEnumerable
9 | {
10 | ///
11 | /// Gets a header
12 | ///
13 | /// header name.
14 | /// header if found; otherwise null.
15 | IHeader this[string name] { get; }
16 |
17 | }
18 | }
--------------------------------------------------------------------------------
/libs/Odyssey/OutlookBar/OverflowMenuCreatedEventArgs.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Collections.ObjectModel;
6 |
7 | namespace Odyssey.Controls
8 | {
9 | public class OverflowMenuCreatedEventArgs:EventArgs
10 | {
11 | public OverflowMenuCreatedEventArgs(Collection