├── .gitattributes
├── .gitignore
├── README.md
├── images
├── channel9-home-android.png
├── channel9-home-gtk.png
├── channel9-home-ios.png
├── channel9-home-uwp.png
├── channel9-menu-android.png
├── channel9-menu-gtk.png
├── channel9-menu-ios.png
└── channel9-menu-uwp.png
└── src
├── Channel9.sln
└── Channel9
├── Channel9.Android
├── Assets
│ └── AboutAssets.txt
├── Channel9.Android.csproj
├── MainActivity.cs
├── Properties
│ ├── AndroidManifest.xml
│ └── AssemblyInfo.cs
├── Resources
│ ├── AboutResources.txt
│ ├── Resource.Designer.cs
│ ├── drawable-hdpi
│ │ └── icon.png
│ ├── drawable-xhdpi
│ │ └── icon.png
│ ├── drawable-xxhdpi
│ │ └── icon.png
│ ├── drawable
│ │ ├── channel9_downloads.png
│ │ ├── channel9_events.png
│ │ ├── channel9_featured.png
│ │ ├── channel9_fresh.png
│ │ ├── channel9_home.png
│ │ ├── channel9_logo.png
│ │ ├── channel9_menu.png
│ │ ├── channel9_mostviewed.png
│ │ ├── channel9_myqueue.png
│ │ ├── channel9_popular.png
│ │ ├── channel9_search.png
│ │ ├── channel9_series.png
│ │ ├── channel9_settings.png
│ │ ├── channel9_shows.png
│ │ ├── channel9_tags.png
│ │ ├── channel9_toprated.png
│ │ ├── channel9_watchlist.png
│ │ └── icon.png
│ ├── layout
│ │ ├── Tabbar.axml
│ │ ├── Toolbar.axml
│ │ └── ToolbarLogo.axml
│ └── values
│ │ └── styles.xml
└── packages.config
├── Channel9.GTK
├── Channel9.GTK.csproj
├── Images
│ ├── channel9-back.png
│ ├── channel9-downloads.png
│ ├── channel9-events.png
│ ├── channel9-featured.png
│ ├── channel9-fresh.png
│ ├── channel9-home.png
│ ├── channel9-logo.png
│ ├── channel9-menu.png
│ ├── channel9-mostviewed.png
│ ├── channel9-myqueue.png
│ ├── channel9-popular.png
│ ├── channel9-search.png
│ ├── channel9-series.png
│ ├── channel9-settings.png
│ ├── channel9-shows.png
│ ├── channel9-tags.png
│ ├── channel9-toprated.png
│ └── channel9-watchlist.png
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── app.config
└── packages.config
├── Channel9.UWP
├── App.xaml
├── App.xaml.cs
├── Assets
│ ├── LockScreenLogo.scale-100.png
│ ├── LockScreenLogo.scale-125.png
│ ├── LockScreenLogo.scale-150.png
│ ├── LockScreenLogo.scale-200.png
│ ├── LockScreenLogo.scale-400.png
│ ├── SplashScreen.scale-100.png
│ ├── SplashScreen.scale-125.png
│ ├── SplashScreen.scale-150.png
│ ├── SplashScreen.scale-200.png
│ ├── SplashScreen.scale-400.png
│ ├── Square150x150Logo.scale-100.png
│ ├── Square150x150Logo.scale-125.png
│ ├── Square150x150Logo.scale-150.png
│ ├── Square150x150Logo.scale-200.png
│ ├── Square150x150Logo.scale-400.png
│ ├── Square44x44Logo.scale-100.png
│ ├── Square44x44Logo.scale-125.png
│ ├── Square44x44Logo.scale-150.png
│ ├── Square44x44Logo.scale-200.png
│ ├── Square44x44Logo.scale-400.png
│ ├── Square44x44Logo.targetsize-16_altform-unplated.png
│ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ ├── Square44x44Logo.targetsize-256_altform-unplated.png
│ ├── Square44x44Logo.targetsize-32_altform-unplated.png
│ ├── Square44x44Logo.targetsize-48_altform-unplated.png
│ ├── StoreLogo.png
│ ├── Wide310x150Logo.scale-100.png
│ ├── Wide310x150Logo.scale-125.png
│ ├── Wide310x150Logo.scale-150.png
│ ├── Wide310x150Logo.scale-200.png
│ ├── Wide310x150Logo.scale-400.png
│ ├── channel9_downloads.png
│ ├── channel9_events.png
│ ├── channel9_featured.png
│ ├── channel9_fresh.png
│ ├── channel9_home.png
│ ├── channel9_logo.png
│ ├── channel9_menu.png
│ ├── channel9_mostviewed.png
│ ├── channel9_myqueue.png
│ ├── channel9_popular.png
│ ├── channel9_search.png
│ ├── channel9_series.png
│ ├── channel9_settings.png
│ ├── channel9_shows.png
│ ├── channel9_tags.png
│ ├── channel9_toprated.png
│ └── channel9_watchlist.png
├── Channel9.UWP.csproj
├── MainPage.xaml
├── MainPage.xaml.cs
├── Package.appxmanifest
├── Properties
│ ├── AssemblyInfo.cs
│ └── Default.rd.xml
└── project.json
├── Channel9.iOS
├── AppDelegate.cs
├── Channel9.iOS.csproj
├── Entitlements.plist
├── Info.plist
├── Main.cs
├── Properties
│ └── AssemblyInfo.cs
├── Renderers
│ └── LogoPageRenderer.cs
├── Resources
│ ├── Default-568h@2x.png
│ ├── Default-Portrait.png
│ ├── Default-Portrait@2x.png
│ ├── Default.png
│ ├── Default@2x.png
│ ├── Icon-60@2x.png
│ ├── Icon-60@3x.png
│ ├── Icon-76.png
│ ├── Icon-76@2x.png
│ ├── Icon-Small-40.png
│ ├── Icon-Small-40@2x.png
│ ├── Icon-Small-40@3x.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon-Small@3x.png
│ ├── LaunchScreen.storyboard
│ ├── channel9_downloads.png
│ ├── channel9_events.png
│ ├── channel9_featured.png
│ ├── channel9_fresh.png
│ ├── channel9_home.png
│ ├── channel9_logo.png
│ ├── channel9_menu.png
│ ├── channel9_mostviewed.png
│ ├── channel9_myqueue.png
│ ├── channel9_popular.png
│ ├── channel9_search.png
│ ├── channel9_series.png
│ ├── channel9_settings.png
│ ├── channel9_shows.png
│ ├── channel9_tags.png
│ ├── channel9_toprated.png
│ └── channel9_watchlist.png
├── iTunesArtwork
├── iTunesArtwork@2x
└── packages.config
└── Channel9
├── App.xaml
├── App.xaml.cs
├── AppSettings.cs
├── Behaviors
└── ItemTappedCommandListView.cs
├── Channel9.csproj
├── Controls
└── HorizontalList
│ └── HorizontalList.cs
├── Converters
├── HtmlToTextConverter.cs
├── InverseBoolConverter.cs
├── MenuItemTypeConverter.cs
└── ToUpperConverter.cs
├── Models
├── Episode.cs
└── MenuItem.cs
├── Properties
└── AssemblyInfo.cs
├── Services
├── Navigation
│ ├── INavigationService.cs
│ └── NavigationService.cs
└── RssService
│ ├── IRssService.cs
│ └── RssService.cs
├── ViewModels
├── Base
│ ├── Locator.cs
│ └── ViewModelBase.cs
├── HomeViewModel.cs
├── MainViewModel.cs
├── MenuViewModel.cs
└── SplashViewModel.cs
├── Views
├── CustomNavigationPage.xaml
├── CustomNavigationPage.xaml.cs
├── HomeView.xaml
├── HomeView.xaml.cs
├── MainView.xaml
├── MainView.xaml.cs
├── MenuView.xaml
├── MenuView.xaml.cs
├── SplashView.xaml
├── SplashView.xaml.cs
└── Templates
│ ├── HomeBigItemTemplate.xaml
│ ├── HomeBigItemTemplate.xaml.cs
│ ├── HomeSmallItemTemplate01.xaml
│ ├── HomeSmallItemTemplate01.xaml.cs
│ ├── HomeSmallItemTemplate02.xaml
│ ├── HomeSmallItemTemplate02.xaml.cs
│ ├── MenuItemTemplate.xaml
│ └── MenuItemTemplate.xaml.cs
└── packages.config
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 |
7 | # Standard to msysgit
8 | *.doc diff=astextplain
9 | *.DOC diff=astextplain
10 | *.docx diff=astextplain
11 | *.DOCX diff=astextplain
12 | *.dot diff=astextplain
13 | *.DOT diff=astextplain
14 | *.pdf diff=astextplain
15 | *.PDF diff=astextplain
16 | *.rtf diff=astextplain
17 | *.RTF diff=astextplain
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 | ##
4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5 |
6 | # User-specific files
7 | *.suo
8 | *.user
9 | *.userosscache
10 | *.sln.docstates
11 |
12 | # User-specific files (MonoDevelop/Xamarin Studio)
13 | *.userprefs
14 |
15 | # Build results
16 | [Dd]ebug/
17 | [Dd]ebugPublic/
18 | [Rr]elease/
19 | [Rr]eleases/
20 | x64/
21 | x86/
22 | bld/
23 | [Bb]in/
24 | [Oo]bj/
25 | [Ll]og/
26 |
27 | # Visual Studio 2015 cache/options directory
28 | .vs/
29 | # Uncomment if you have tasks that create the project's static files in wwwroot
30 | #wwwroot/
31 |
32 | # MSTest test Results
33 | [Tt]est[Rr]esult*/
34 | [Bb]uild[Ll]og.*
35 |
36 | # NUNIT
37 | *.VisualState.xml
38 | TestResult.xml
39 |
40 | # Build Results of an ATL Project
41 | [Dd]ebugPS/
42 | [Rr]eleasePS/
43 | dlldata.c
44 |
45 | # .NET Core
46 | project.lock.json
47 | project.fragment.lock.json
48 | artifacts/
49 | **/Properties/launchSettings.json
50 |
51 | *_i.c
52 | *_p.c
53 | *_i.h
54 | *.ilk
55 | *.meta
56 | *.obj
57 | *.pch
58 | *.pdb
59 | *.pgc
60 | *.pgd
61 | *.rsp
62 | *.sbr
63 | *.tlb
64 | *.tli
65 | *.tlh
66 | *.tmp
67 | *.tmp_proj
68 | *.log
69 | *.vspscc
70 | *.vssscc
71 | .builds
72 | *.pidb
73 | *.svclog
74 | *.scc
75 |
76 | # Chutzpah Test files
77 | _Chutzpah*
78 |
79 | # Visual C++ cache files
80 | ipch/
81 | *.aps
82 | *.ncb
83 | *.opendb
84 | *.opensdf
85 | *.sdf
86 | *.cachefile
87 | *.VC.db
88 | *.VC.VC.opendb
89 |
90 | # Visual Studio profiler
91 | *.psess
92 | *.vsp
93 | *.vspx
94 | *.sap
95 |
96 | # TFS 2012 Local Workspace
97 | $tf/
98 |
99 | # Guidance Automation Toolkit
100 | *.gpState
101 |
102 | # ReSharper is a .NET coding add-in
103 | _ReSharper*/
104 | *.[Rr]e[Ss]harper
105 | *.DotSettings.user
106 |
107 | # JustCode is a .NET coding add-in
108 | .JustCode
109 |
110 | # TeamCity is a build add-in
111 | _TeamCity*
112 |
113 | # DotCover is a Code Coverage Tool
114 | *.dotCover
115 |
116 | # Visual Studio code coverage results
117 | *.coverage
118 | *.coveragexml
119 |
120 | # NCrunch
121 | _NCrunch_*
122 | .*crunch*.local.xml
123 | nCrunchTemp_*
124 |
125 | # MightyMoose
126 | *.mm.*
127 | AutoTest.Net/
128 |
129 | # Web workbench (sass)
130 | .sass-cache/
131 |
132 | # Installshield output folder
133 | [Ee]xpress/
134 |
135 | # DocProject is a documentation generator add-in
136 | DocProject/buildhelp/
137 | DocProject/Help/*.HxT
138 | DocProject/Help/*.HxC
139 | DocProject/Help/*.hhc
140 | DocProject/Help/*.hhk
141 | DocProject/Help/*.hhp
142 | DocProject/Help/Html2
143 | DocProject/Help/html
144 |
145 | # Click-Once directory
146 | publish/
147 |
148 | # Publish Web Output
149 | *.[Pp]ublish.xml
150 | *.azurePubxml
151 | # TODO: Comment the next line if you want to checkin your web deploy settings
152 | # but database connection strings (with potential passwords) will be unencrypted
153 | *.pubxml
154 | *.publishproj
155 |
156 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
157 | # checkin your Azure Web App publish settings, but sensitive information contained
158 | # in these scripts will be unencrypted
159 | PublishScripts/
160 |
161 | # NuGet Packages
162 | *.nupkg
163 | # The packages folder can be ignored because of Package Restore
164 | **/packages/*
165 | # except build/, which is used as an MSBuild target.
166 | !**/packages/build/
167 | # Uncomment if necessary however generally it will be regenerated when needed
168 | #!**/packages/repositories.config
169 | # NuGet v3's project.json files produces more ignorable files
170 | *.nuget.props
171 | *.nuget.targets
172 |
173 | # Microsoft Azure Build Output
174 | csx/
175 | *.build.csdef
176 |
177 | # Microsoft Azure Emulator
178 | ecf/
179 | rcf/
180 |
181 | # Windows Store app package directories and files
182 | AppPackages/
183 | BundleArtifacts/
184 | Package.StoreAssociation.xml
185 | _pkginfo.txt
186 |
187 | # Visual Studio cache files
188 | # files ending in .cache can be ignored
189 | *.[Cc]ache
190 | # but keep track of directories ending in .cache
191 | !*.[Cc]ache/
192 |
193 | # Others
194 | ClientBin/
195 | ~$*
196 | *~
197 | *.dbmdl
198 | *.dbproj.schemaview
199 | *.jfm
200 | *.pfx
201 | *.publishsettings
202 | orleans.codegen.cs
203 |
204 | # Since there are multiple workflows, uncomment next line to ignore bower_components
205 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
206 | #bower_components/
207 |
208 | # RIA/Silverlight projects
209 | Generated_Code/
210 |
211 | # Backup & report files from converting an old project file
212 | # to a newer Visual Studio version. Backup files are not needed,
213 | # because we have git ;-)
214 | _UpgradeReport_Files/
215 | Backup*/
216 | UpgradeLog*.XML
217 | UpgradeLog*.htm
218 |
219 | # SQL Server files
220 | *.mdf
221 | *.ldf
222 | *.ndf
223 |
224 | # Business Intelligence projects
225 | *.rdl.data
226 | *.bim.layout
227 | *.bim_*.settings
228 |
229 | # Microsoft Fakes
230 | FakesAssemblies/
231 |
232 | # GhostDoc plugin setting file
233 | *.GhostDoc.xml
234 |
235 | # Node.js Tools for Visual Studio
236 | .ntvs_analysis.dat
237 | node_modules/
238 |
239 | # Typescript v1 declaration files
240 | typings/
241 |
242 | # Visual Studio 6 build log
243 | *.plg
244 |
245 | # Visual Studio 6 workspace options file
246 | *.opt
247 |
248 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
249 | *.vbw
250 |
251 | # Visual Studio LightSwitch build output
252 | **/*.HTMLClient/GeneratedArtifacts
253 | **/*.DesktopClient/GeneratedArtifacts
254 | **/*.DesktopClient/ModelManifest.xml
255 | **/*.Server/GeneratedArtifacts
256 | **/*.Server/ModelManifest.xml
257 | _Pvt_Extensions
258 |
259 | # Paket dependency manager
260 | .paket/paket.exe
261 | paket-files/
262 |
263 | # FAKE - F# Make
264 | .fake/
265 |
266 | # JetBrains Rider
267 | .idea/
268 | *.sln.iml
269 |
270 | # CodeRush
271 | .cr/
272 |
273 | # Python Tools for Visual Studio (PTVS)
274 | __pycache__/
275 | *.pyc
276 |
277 | # Cake - Uncomment if you are using it
278 | # tools/**
279 | # !tools/packages.config
280 |
281 | # Telerik's JustMock configuration file
282 | *.jmconfig
283 |
284 | # BizTalk build output
285 | *.btp.cs
286 | *.btm.cs
287 | *.odx.cs
288 | *.xsd.cs
289 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Xamarin.Channel 9
2 |
3 | **Channel 9** Application made with **Xamarin.Forms**.
4 |
5 | *Work in progress!*
6 |
7 | ## The result
8 |
9 | ### Android
10 |
11 |
12 |
13 | ## iOS
14 |
15 |
16 |
17 | ### UWP
18 |
19 |
20 |
21 | ### GTK
22 |
23 |
24 |
25 | ## Xamarin.Forms 3.0 Feed
26 |
27 | The **Xamarin.Forms 3.0** preview is published to a custom NuGet feed. To get it:
28 |
29 | - Add a new source to your NuGet Manager: [https://www.myget.org/F/xamarinforms-dev/api/v3/index.json](https://www.myget.org/F/xamarinforms-dev/api/v3/index.json).
30 | - Check Pre-Release.
31 | - Select and install the package with the name **3.0.0.201-gtk**.
32 |
33 | ## Notes
34 |
35 | The purpose of this demo is simply to show how you can create nice UI in Xamarin.Forms. Channel 9 is used as a reference but this is NOT the official Channel 9 App.
36 |
37 | ## Setup
38 |
39 | Download or clone the repository. This is a solution with two projects.
40 |
41 | Rebuild the solution to get all neccesary NuGet packages.
42 |
43 | **Enjoy!**
44 |
45 | ## Copyright and license
46 |
47 | Code released under the [MIT license](https://opensource.org/licenses/MIT).
48 |
--------------------------------------------------------------------------------
/images/channel9-home-android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/images/channel9-home-android.png
--------------------------------------------------------------------------------
/images/channel9-home-gtk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/images/channel9-home-gtk.png
--------------------------------------------------------------------------------
/images/channel9-home-ios.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/images/channel9-home-ios.png
--------------------------------------------------------------------------------
/images/channel9-home-uwp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/images/channel9-home-uwp.png
--------------------------------------------------------------------------------
/images/channel9-menu-android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/images/channel9-menu-android.png
--------------------------------------------------------------------------------
/images/channel9-menu-gtk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/images/channel9-menu-gtk.png
--------------------------------------------------------------------------------
/images/channel9-menu-ios.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/images/channel9-menu-ios.png
--------------------------------------------------------------------------------
/images/channel9-menu-uwp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/images/channel9-menu-uwp.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using Android.App;
2 | using Android.Content.PM;
3 | using Android.OS;
4 |
5 | namespace Channel9.Droid
6 | {
7 | [Activity(
8 | Label = "Channel 9",
9 | Icon = "@drawable/icon",
10 | Theme = "@style/MainTheme",
11 | MainLauncher = true,
12 | ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
13 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
14 | {
15 | protected override void OnCreate(Bundle bundle)
16 | {
17 | TabLayoutResource = Resource.Layout.Tabbar;
18 | ToolbarResource = Resource.Layout.ToolbarLogo;
19 |
20 | base.OnCreate(bundle);
21 |
22 | global::Xamarin.Forms.Forms.Init(this, bundle);
23 |
24 | LoadApplication(new App());
25 | }
26 | }
27 | }
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 | using Android.App;
5 |
6 | // General Information about an assembly is controlled through the following
7 | // set of attributes. Change these attribute values to modify the information
8 | // associated with an assembly.
9 | [assembly: AssemblyTitle("Channel9.Android")]
10 | [assembly: AssemblyDescription("")]
11 | [assembly: AssemblyConfiguration("")]
12 | [assembly: AssemblyCompany("")]
13 | [assembly: AssemblyProduct("Channel9.Android")]
14 | [assembly: AssemblyCopyright("Copyright © 2014")]
15 | [assembly: AssemblyTrademark("")]
16 | [assembly: AssemblyCulture("")]
17 | [assembly: ComVisible(false)]
18 |
19 | // Version information for an assembly consists of the following four values:
20 | //
21 | // Major Version
22 | // Minor Version
23 | // Build Number
24 | // Revision
25 | //
26 | // You can specify all the values or you can default the Build and Revision Numbers
27 | // by using the '*' as shown below:
28 | // [assembly: AssemblyVersion("1.0.*")]
29 | [assembly: AssemblyVersion("1.0.0.0")]
30 | [assembly: AssemblyFileVersion("1.0.0.0")]
31 |
32 | // Add some common permissions, these can be removed if not needed
33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)]
34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
35 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/AboutResources.txt:
--------------------------------------------------------------------------------
1 | Images, layout descriptions, binary blobs and string dictionaries can be included
2 | in your application as resource files. Various Android APIs are designed to
3 | operate on the resource IDs instead of dealing with images, strings or binary blobs
4 | directly.
5 |
6 | For example, a sample Android app that contains a user interface layout (main.xml),
7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
8 | would keep its resources in the "Resources" directory of the application:
9 |
10 | Resources/
11 | drawable-hdpi/
12 | icon.png
13 |
14 | drawable-ldpi/
15 | icon.png
16 |
17 | drawable-mdpi/
18 | icon.png
19 |
20 | layout/
21 | main.xml
22 |
23 | values/
24 | strings.xml
25 |
26 | In order to get the build system to recognize Android resources, set the build action to
27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but
28 | instead operate on resource IDs. When you compile an Android application that uses resources,
29 | the build system will package the resources for distribution and generate a class called
30 | "Resource" that contains the tokens for each one of the resources included. For example,
31 | for the above Resources layout, this is what the Resource class would expose:
32 |
33 | public class Resource {
34 | public class drawable {
35 | public const int icon = 0x123;
36 | }
37 |
38 | public class layout {
39 | public const int main = 0x456;
40 | }
41 |
42 | public class strings {
43 | public const int first_string = 0xabc;
44 | public const int second_string = 0xbcd;
45 | }
46 | }
47 |
48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main
49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first
50 | string in the dictionary file values/strings.xml.
51 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_downloads.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_downloads.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_events.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_events.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_featured.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_featured.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_fresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_fresh.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_home.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_logo.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_menu.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_mostviewed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_mostviewed.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_myqueue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_myqueue.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_popular.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_popular.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_search.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_series.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_series.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_settings.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_shows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_shows.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_tags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_tags.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_toprated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_toprated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/channel9_watchlist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/channel9_watchlist.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.Android/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/layout/Tabbar.axml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/layout/Toolbar.axml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/layout/ToolbarLogo.axml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
16 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/Resources/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
26 |
27 |
30 |
31 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.Android/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Channel9.GTK.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {19885808-0360-40E7-AC36-8E4542E96316}
8 | WinExe
9 | Properties
10 | Channel9.GTK
11 | Channel9.GTK
12 | v4.5.2
13 | 512
14 |
15 |
16 |
17 |
18 |
19 | true
20 | full
21 | false
22 | bin\Debug\
23 | DEBUG;TRACE
24 | prompt
25 | 4
26 |
27 |
28 | pdbonly
29 | true
30 | bin\Release\
31 | TRACE
32 | prompt
33 | 4
34 |
35 |
36 |
37 |
38 |
39 |
40 | False
41 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\gtk-sharp-2.0\atk-sharp.dll
42 | False
43 |
44 |
45 | False
46 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\gtk-sharp-2.0\gdk-sharp.dll
47 | False
48 |
49 |
50 | False
51 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\gtk-sharp-2.0\glade-sharp.dll
52 | False
53 |
54 |
55 | False
56 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\gtk-sharp-2.0\glib-sharp.dll
57 | False
58 |
59 |
60 | False
61 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\gtk-sharp-2.0\gtk-dotnet.dll
62 | False
63 |
64 |
65 | False
66 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\gtk-sharp-2.0\gtk-sharp.dll
67 | False
68 |
69 |
70 | ..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll
71 |
72 |
73 | ..\..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.dll
74 |
75 |
76 | ..\..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.Configuration.dll
77 |
78 |
79 | ..\..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.RegistrationByConvention.dll
80 |
81 |
82 | False
83 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\Mono.Cairo\Mono.Cairo.dll
84 | False
85 |
86 |
87 | False
88 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\Mono.Posix\Mono.Posix.dll
89 | False
90 |
91 |
92 | False
93 | ..\..\..\..\..\..\..\..\Program Files (x86)\GtkSharp\2.12\lib\gtk-sharp-2.0\pango-sharp.dll
94 | False
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\net45\Xamarin.Forms.Core.dll
108 |
109 |
110 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\net45\Xamarin.Forms.Platform.dll
111 |
112 |
113 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\net45\Xamarin.Forms.Platform.GTK.dll
114 |
115 |
116 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\net45\Xamarin.Forms.Xaml.dll
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 | {5a9b7035-b1f2-4033-b005-788ff7d99e19}
130 | Channel9
131 |
132 |
133 |
134 |
135 | PreserveNewest
136 |
137 |
138 | PreserveNewest
139 |
140 |
141 | PreserveNewest
142 |
143 |
144 | PreserveNewest
145 |
146 |
147 | PreserveNewest
148 |
149 |
150 | PreserveNewest
151 |
152 |
153 | PreserveNewest
154 |
155 |
156 | PreserveNewest
157 |
158 |
159 | PreserveNewest
160 |
161 |
162 | PreserveNewest
163 |
164 |
165 | PreserveNewest
166 |
167 |
168 | PreserveNewest
169 |
170 |
171 | PreserveNewest
172 |
173 |
174 | PreserveNewest
175 |
176 |
177 | PreserveNewest
178 |
179 |
180 | PreserveNewest
181 |
182 |
183 | PreserveNewest
184 |
185 |
186 | PreserveNewest
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 | Este proyecto hace referencia a los paquetes NuGet que faltan en este equipo. Use la restauración de paquetes NuGet para descargarlos. Para obtener más información, consulte http://go.microsoft.com/fwlink/?LinkID=322105. El archivo que falta es {0}.
195 |
196 |
197 |
198 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-back.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-downloads.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-downloads.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-events.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-events.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-featured.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-featured.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-fresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-fresh.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-home.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-logo.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-menu.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-mostviewed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-mostviewed.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-myqueue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-myqueue.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-popular.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-popular.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-search.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-series.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-series.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-settings.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-shows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-shows.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-tags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-tags.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-toprated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-toprated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Images/channel9-watchlist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.GTK/Images/channel9-watchlist.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Program.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Platform.GTK;
3 |
4 | namespace Channel9.GTK
5 | {
6 | class Program
7 | {
8 | public static object VideoViewRenderer { get; private set; }
9 |
10 | static void Main(string[] args)
11 | {
12 | Gtk.Application.Init();
13 | Forms.Init();
14 | var app = new App();
15 | var window = new FormsWindow();
16 | window.LoadApplication(app);
17 | window.SetApplicationTitle("Channel 9");
18 | window.SetApplicationIcon("Images/channel9-logo.png");
19 | window.Show();
20 | Gtk.Application.Run();
21 | }
22 | }
23 | }
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // La información general de un ensamblado se controla mediante el siguiente
6 | // conjunto de atributos. Cambie estos valores de atributo para modificar la información
7 | // asociada con un ensamblado.
8 | [assembly: AssemblyTitle("Channel9.GTK")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("Channel9.GTK")]
13 | [assembly: AssemblyCopyright("Copyright © 2017")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Si establece ComVisible en false, los tipos de este ensamblado no estarán visibles
18 | // para los componentes COM. Si es necesario obtener acceso a un tipo en este ensamblado desde
19 | // COM, establezca el atributo ComVisible en true en este tipo.
20 | [assembly: ComVisible(false)]
21 |
22 | // El siguiente GUID sirve como id. de typelib si este proyecto se expone a COM.
23 | [assembly: Guid("19885808-0360-40e7-ac36-8e4542e96316")]
24 |
25 | // La información de versión de un ensamblado consta de los cuatro valores siguientes:
26 | //
27 | // Versión principal
28 | // Versión secundaria
29 | // Número de compilación
30 | // Revisión
31 | //
32 | // Puede especificar todos los valores o usar los números de compilación y de revisión predeterminados
33 | // mediante el carácter "*", como se muestra a continuación:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.GTK/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/App.xaml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 | #F47622
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using Windows.ApplicationModel;
3 | using Windows.ApplicationModel.Activation;
4 | using Windows.UI.Xaml;
5 | using Windows.UI.Xaml.Controls;
6 | using Windows.UI.Xaml.Navigation;
7 |
8 | namespace Channel9.UWP
9 | {
10 | ///
11 | /// Provides application-specific behavior to supplement the default Application class.
12 | ///
13 | sealed partial class App : Application
14 | {
15 | ///
16 | /// Initializes the singleton application object. This is the first line of authored code
17 | /// executed, and as such is the logical equivalent of main() or WinMain().
18 | ///
19 | public App()
20 | {
21 | this.InitializeComponent();
22 | this.Suspending += OnSuspending;
23 | }
24 |
25 | ///
26 | /// Invoked when the application is launched normally by the end user. Other entry points
27 | /// will be used such as when the application is launched to open a specific file.
28 | ///
29 | /// Details about the launch request and process.
30 | protected override void OnLaunched(LaunchActivatedEventArgs e)
31 | {
32 |
33 | #if DEBUG
34 | if (System.Diagnostics.Debugger.IsAttached)
35 | {
36 | this.DebugSettings.EnableFrameRateCounter = true;
37 | }
38 | #endif
39 |
40 | Frame rootFrame = Window.Current.Content as Frame;
41 |
42 | // Do not repeat app initialization when the Window already has content,
43 | // just ensure that the window is active
44 | if (rootFrame == null)
45 | {
46 | // Create a Frame to act as the navigation context and navigate to the first page
47 | rootFrame = new Frame();
48 |
49 | rootFrame.NavigationFailed += OnNavigationFailed;
50 |
51 | Xamarin.Forms.Forms.Init(e);
52 |
53 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
54 | {
55 | //TODO: Load state from previously suspended application
56 | }
57 |
58 | // Place the frame in the current Window
59 | Window.Current.Content = rootFrame;
60 | }
61 |
62 | if (rootFrame.Content == null)
63 | {
64 | // When the navigation stack isn't restored navigate to the first page,
65 | // configuring the new page by passing required information as a navigation
66 | // parameter
67 | rootFrame.Navigate(typeof(MainPage), e.Arguments);
68 | }
69 | // Ensure the current window is active
70 | Window.Current.Activate();
71 | }
72 |
73 | ///
74 | /// Invoked when Navigation to a certain page fails
75 | ///
76 | /// The Frame which failed navigation
77 | /// Details about the navigation failure
78 | void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
79 | {
80 | throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
81 | }
82 |
83 | ///
84 | /// Invoked when application execution is being suspended. Application state is saved
85 | /// without knowing whether the application will be terminated or resumed with the contents
86 | /// of memory still intact.
87 | ///
88 | /// The source of the suspend request.
89 | /// Details about the suspend request.
90 | private void OnSuspending(object sender, SuspendingEventArgs e)
91 | {
92 | var deferral = e.SuspendingOperation.GetDeferral();
93 | //TODO: Save application state and stop any background activity
94 | deferral.Complete();
95 | }
96 | }
97 | }
98 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-100.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-125.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-150.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/LockScreenLogo.scale-400.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/StoreLogo.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_downloads.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_downloads.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_events.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_events.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_featured.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_featured.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_fresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_fresh.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_home.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_logo.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_menu.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_mostviewed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_mostviewed.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_myqueue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_myqueue.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_popular.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_popular.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_search.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_series.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_series.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_settings.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_shows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_shows.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_tags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_tags.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_toprated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_toprated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Assets/channel9_watchlist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.UWP/Assets/channel9_watchlist.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Channel9.UWP.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | x86
7 | {DCE75E3A-4AEB-4AFA-8D83-9E85B5B66EA0}
8 | AppContainerExe
9 | Properties
10 | Channel9.UWP
11 | Channel9.UWP
12 | en-US
13 | UAP
14 | 10.0.16299.0
15 | 10.0.10586.0
16 | 14
17 | true
18 | 512
19 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
20 | Channel9.UWP_TemporaryKey.pfx
21 |
22 |
23 | true
24 | bin\ARM\Debug\
25 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
26 | ;2008
27 | full
28 | ARM
29 | false
30 | prompt
31 | true
32 |
33 |
34 | bin\ARM\Release\
35 | TRACE;NETFX_CORE;WINDOWS_UWP
36 | true
37 | ;2008
38 | pdbonly
39 | ARM
40 | false
41 | prompt
42 | true
43 | true
44 |
45 |
46 | true
47 | bin\x64\Debug\
48 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
49 | ;2008
50 | full
51 | x64
52 | false
53 | prompt
54 | true
55 |
56 |
57 | bin\x64\Release\
58 | TRACE;NETFX_CORE;WINDOWS_UWP
59 | true
60 | ;2008
61 | pdbonly
62 | x64
63 | false
64 | prompt
65 | true
66 | true
67 |
68 |
69 | true
70 | bin\x86\Debug\
71 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
72 | ;2008
73 | full
74 | x86
75 | false
76 | prompt
77 | true
78 |
79 |
80 | bin\x86\Release\
81 | TRACE;NETFX_CORE;WINDOWS_UWP
82 | true
83 | ;2008
84 | pdbonly
85 | x86
86 | false
87 | prompt
88 | true
89 | true
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 | App.xaml
98 |
99 |
100 | MainPage.xaml
101 |
102 |
103 |
104 |
105 |
106 | Designer
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 | MSBuild:Compile
164 | Designer
165 |
166 |
167 | MSBuild:Compile
168 | Designer
169 |
170 |
171 |
172 |
173 | {1e6d8fae-9548-4e26-baea-f3a310de6efa}
174 | Channel9
175 |
176 |
177 |
178 |
179 | Windows Mobile Extensions for the UWP
180 |
181 |
182 |
183 | 14.0
184 |
185 |
186 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Windows.Foundation.Metadata;
2 | using Windows.UI;
3 | using Windows.UI.ViewManagement;
4 |
5 | namespace Channel9.UWP
6 | {
7 | public sealed partial class MainPage
8 | {
9 | public MainPage()
10 | {
11 | this.InitializeComponent();
12 |
13 | LoadApplication(new Channel9.App());
14 |
15 | NativeCustomize();
16 | }
17 |
18 | private void NativeCustomize()
19 | {
20 | // PC Customization
21 | if (ApiInformation.IsTypePresent("Windows.UI.ViewManagement.ApplicationView"))
22 | {
23 | var titleBar = ApplicationView.GetForCurrentView().TitleBar;
24 | if (titleBar != null)
25 | {
26 | titleBar.BackgroundColor = (Color)App.Current.Resources["NativeAccentColor"];
27 | titleBar.ButtonBackgroundColor = (Color)App.Current.Resources["NativeAccentColor"];
28 | }
29 | }
30 |
31 | // Mobile Customization
32 | if (ApiInformation.IsTypePresent("Windows.UI.ViewManagement.StatusBar"))
33 | {
34 | var statusBar = StatusBar.GetForCurrentView();
35 | if (statusBar != null)
36 | {
37 | statusBar.BackgroundOpacity = 1;
38 | statusBar.BackgroundColor = (Color)App.Current.Resources["NativeAccentColor"];
39 | }
40 | }
41 |
42 | // Launch in Window Mode
43 | var currentView = ApplicationView.GetForCurrentView();
44 | if (currentView.IsFullScreenMode)
45 | {
46 | currentView.ExitFullScreenMode();
47 | }
48 | }
49 | }
50 | }
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Package.appxmanifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Channel9.UWP
7 | javie
8 | Assets\StoreLogo.png
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("Channel9.UWP")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("Channel9.UWP")]
13 | [assembly: AssemblyCopyright("Copyright © 2015")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Version information for an assembly consists of the following four values:
18 | //
19 | // Major Version
20 | // Minor Version
21 | // Build Number
22 | // Revision
23 | //
24 | // You can specify all the values or you can default the Build and Revision Numbers
25 | // by using the '*' as shown below:
26 | // [assembly: AssemblyVersion("1.0.*")]
27 | [assembly: AssemblyVersion("1.0.0.0")]
28 | [assembly: AssemblyFileVersion("1.0.0.0")]
29 | [assembly: ComVisible(false)]
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/Properties/Default.rd.xml:
--------------------------------------------------------------------------------
1 |
17 |
18 |
19 |
20 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.UWP/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2",
4 | "Unity": "4.0.1",
5 | "Xamarin.Forms": "3.0.0.201-gtk"
6 | },
7 | "frameworks": {
8 | "uap10.0.10586": {}
9 | },
10 | "runtimes": {
11 | "win10-arm": {},
12 | "win10-arm-aot": {},
13 | "win10-x86": {},
14 | "win10-x86-aot": {},
15 | "win10-x64": {},
16 | "win10-x64-aot": {}
17 | }
18 | }
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/AppDelegate.cs:
--------------------------------------------------------------------------------
1 | using Foundation;
2 | using UIKit;
3 |
4 | namespace Channel9.iOS
5 | {
6 | // The UIApplicationDelegate for the application. This class is responsible for launching the
7 | // User Interface of the application, as well as listening (and optionally responding) to
8 | // application events from iOS.
9 | [Register("AppDelegate")]
10 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
11 | {
12 | //
13 | // This method is invoked when the application has loaded and is ready to run. In this
14 | // method you should instantiate the window, load the UI into it and then make the window
15 | // visible.
16 | //
17 | // You have 17 seconds to return from this method, or iOS will terminate your application.
18 | //
19 | public override bool FinishedLaunching(UIApplication app, NSDictionary options)
20 | {
21 | global::Xamarin.Forms.Forms.Init();
22 | LoadApplication(new App());
23 |
24 | return base.FinishedLaunching(app, options);
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Channel9.iOS.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | iPhoneSimulator
6 | 8.0.30703
7 | 2.0
8 | {BA9BA72E-E56B-43AB-A63D-A6EFA2A2FE6F}
9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
10 | Exe
11 | Channel9.iOS
12 | Resources
13 | Channel9.iOS
14 |
15 |
16 |
17 |
18 | true
19 | full
20 | false
21 | bin\iPhoneSimulator\Debug
22 | DEBUG
23 | prompt
24 | 4
25 | false
26 | i386, x86_64
27 | None
28 | true
29 |
30 |
31 | none
32 | true
33 | bin\iPhoneSimulator\Release
34 | prompt
35 | 4
36 | None
37 | i386, x86_64
38 | false
39 |
40 |
41 | true
42 | full
43 | false
44 | bin\iPhone\Debug
45 | DEBUG
46 | prompt
47 | 4
48 | false
49 | ARMv7, ARM64
50 | iPhone Developer
51 | true
52 | Entitlements.plist
53 |
54 |
55 | none
56 | true
57 | bin\iPhone\Release
58 | prompt
59 | 4
60 | ARMv7, ARM64
61 | false
62 | iPhone Developer
63 | Entitlements.plist
64 |
65 |
66 | none
67 | True
68 | bin\iPhone\Ad-Hoc
69 | prompt
70 | 4
71 | False
72 | ARMv7, ARM64
73 | True
74 | Automatic:AdHoc
75 | iPhone Distribution
76 | Entitlements.plist
77 |
78 |
79 | none
80 | True
81 | bin\iPhone\AppStore
82 | prompt
83 | 4
84 | False
85 | ARMv7, ARM64
86 | Automatic:AppStore
87 | iPhone Distribution
88 | Entitlements.plist
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 | ..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll
122 |
123 |
124 | ..\..\packages\Unity.4.0.1\lib\portable-net45+wp80+win8+wpa81+MonoAndroid10+MonoTouch10\Microsoft.Practices.Unity.dll
125 |
126 |
127 | ..\..\packages\Plugin.MediaManager.0.4.5\lib\Xamarin.iOS10\Plugin.MediaManager.dll
128 |
129 |
130 | ..\..\packages\Plugin.MediaManager.0.4.5\lib\Xamarin.iOS10\Plugin.MediaManager.Abstractions.dll
131 |
132 |
133 |
134 |
135 |
136 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll
137 |
138 |
139 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll
140 |
141 |
142 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll
143 |
144 |
145 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll
146 |
147 |
148 |
149 |
150 |
151 | {1e6d8fae-9548-4e26-baea-f3a310de6efa}
152 | Channel9
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 | Este proyecto hace referencia a los paquetes NuGet que faltan en este equipo. Use la restauración de paquetes NuGet para descargarlos. Para obtener más información, consulte http://go.microsoft.com/fwlink/?LinkID=322105. El archivo que falta es {0}.
211 |
212 |
213 |
214 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | UIDeviceFamily
6 |
7 | 1
8 | 2
9 |
10 | UISupportedInterfaceOrientations
11 |
12 | UIInterfaceOrientationPortrait
13 | UIInterfaceOrientationLandscapeLeft
14 | UIInterfaceOrientationLandscapeRight
15 |
16 | UISupportedInterfaceOrientations~ipad
17 |
18 | UIInterfaceOrientationPortrait
19 | UIInterfaceOrientationPortraitUpsideDown
20 | UIInterfaceOrientationLandscapeLeft
21 | UIInterfaceOrientationLandscapeRight
22 |
23 | MinimumOSVersion
24 | 8.0
25 | CFBundleDisplayName
26 | Channel9
27 | CFBundleIdentifier
28 | com.yourcompany.Channel9
29 | CFBundleVersion
30 | 1.0
31 | CFBundleIconFiles
32 |
33 | Icon-60@2x
34 | Icon-60@3x
35 | Icon-76
36 | Icon-76@2x
37 | Default
38 | Default@2x
39 | Default-568h@2x
40 | Default-Portrait
41 | Default-Portrait@2x
42 | Icon-Small-40
43 | Icon-Small-40@2x
44 | Icon-Small-40@3x
45 | Icon-Small
46 | Icon-Small@2x
47 | Icon-Small@3x
48 |
49 | UILaunchStoryboardName
50 | LaunchScreen
51 |
52 |
53 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using UIKit;
2 |
3 | namespace Channel9.iOS
4 | {
5 | public class Application
6 | {
7 | // This is the main entry point of the application.
8 | static void Main(string[] args)
9 | {
10 | // if you want to use a different Application Delegate class from "AppDelegate"
11 | // you can specify it here.
12 | UIApplication.Main(args, null, "AppDelegate");
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("Channel9.iOS")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("Channel9.iOS")]
13 | [assembly: AssemblyCopyright("Copyright © 2014")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Build and Revision Numbers
33 | // by using the '*' as shown below:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Renderers/LogoPageRenderer.cs:
--------------------------------------------------------------------------------
1 | using Channel9.iOS.Renderers;
2 | using Channel9.Views;
3 | using CoreGraphics;
4 | using System.Linq;
5 | using UIKit;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Platform.iOS;
8 |
9 | [assembly: ExportRenderer(typeof(HomeView), typeof(LogoPageRenderer))]
10 | namespace Channel9.iOS.Renderers
11 | {
12 | public class LogoPageRenderer : PageRenderer
13 | {
14 | public override void ViewWillAppear(bool animated)
15 | {
16 | base.ViewWillAppear(animated);
17 |
18 | var image = UIImage.FromBundle("channel9_logo.png");
19 | var imageView = new UIImageView(new CGRect(0, 0, 140, 70))
20 | {
21 | ContentMode = UIViewContentMode.ScaleAspectFit,
22 | Image = image.ImageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal)
23 | };
24 |
25 | if (NavigationController != null)
26 | {
27 | NavigationController.TopViewController.NavigationItem.TitleView = imageView;
28 | }
29 | }
30 | }
31 | }
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_downloads.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_downloads.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_events.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_events.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_featured.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_featured.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_fresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_fresh.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_home.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_logo.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_menu.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_mostviewed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_mostviewed.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_myqueue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_myqueue.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_popular.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_popular.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_search.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_series.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_series.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_settings.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_shows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_shows.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_tags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_tags.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_toprated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_toprated.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/Resources/channel9_watchlist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/Resources/channel9_watchlist.png
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsuarezruiz/xamarin-forms-channel9-sample/cd96f8b1e04d89f8303b7403f80b75df1b791f0f/src/Channel9/Channel9.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/src/Channel9/Channel9.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 | #FFFFFF
11 | #000000
12 |
13 |
14 | #F47622
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using Channel9.Services.Navigation;
2 | using Channel9.ViewModels.Base;
3 | using System.Threading.Tasks;
4 | using Xamarin.Forms;
5 |
6 | namespace Channel9
7 | {
8 | public partial class App : Application
9 | {
10 | public App()
11 | {
12 | InitializeComponent();
13 | InitNavigation();
14 | }
15 |
16 | private Task InitNavigation()
17 | {
18 | var navigationService = Locator.Instance.Resolve();
19 | return navigationService.InitializeAsync();
20 | }
21 |
22 | protected override void OnStart()
23 | {
24 | // Handle when your app starts
25 | }
26 |
27 | protected override void OnSleep()
28 | {
29 | // Handle when your app sleeps
30 | }
31 |
32 | protected override void OnResume()
33 | {
34 | // Handle when your app resumes
35 | }
36 | }
37 | }
--------------------------------------------------------------------------------
/src/Channel9/Channel9/AppSettings.cs:
--------------------------------------------------------------------------------
1 | namespace Channel9
2 | {
3 | public class AppSettings
4 | {
5 | public static string Channel9 = "https://s.ch9.ms/Feeds/RSS";
6 | public static string XamarinShow = "https://s.ch9.ms/Shows/XamarinShow/feed";
7 | public static string Build2017 = "https://s.ch9.ms/Events/Build/2017/RSS";
8 | }
9 | }
--------------------------------------------------------------------------------
/src/Channel9/Channel9/Behaviors/ItemTappedCommandListView.cs:
--------------------------------------------------------------------------------
1 | using System.Windows.Input;
2 | using Xamarin.Forms;
3 |
4 | namespace Channel9.Behaviors
5 | {
6 | public sealed class ItemTappedCommandListView
7 | {
8 | public static readonly BindableProperty ItemTappedCommandProperty =
9 | BindableProperty.CreateAttached(
10 | "ItemTappedCommand",
11 | typeof(ICommand),
12 | typeof(ItemTappedCommandListView),
13 | default(ICommand),
14 | BindingMode.OneWay,
15 | null,
16 | PropertyChanged);
17 |
18 | private static void PropertyChanged(BindableObject bindable, object oldValue, object newValue)
19 | {
20 | var listView = bindable as ListView;
21 | if (listView != null)
22 | {
23 | listView.ItemTapped -= ListViewOnItemTapped;
24 | listView.ItemTapped += ListViewOnItemTapped;
25 | }
26 | }
27 |
28 | private static void ListViewOnItemTapped(object sender, ItemTappedEventArgs e)
29 | {
30 | var list = sender as ListView;
31 | if (list != null && list.IsEnabled && !list.IsRefreshing)
32 | {
33 | list.SelectedItem = null;
34 | var command = GetItemTappedCommand(list);
35 | if (command != null && command.CanExecute(e.Item))
36 | {
37 | command.Execute(e.Item);
38 | }
39 | }
40 | }
41 |
42 | public static ICommand GetItemTappedCommand(BindableObject bindableObject)
43 | {
44 | return (ICommand)bindableObject.GetValue(ItemTappedCommandProperty);
45 | }
46 |
47 | public static void SetItemTappedCommand(BindableObject bindableObject, object value)
48 | {
49 | bindableObject.SetValue(ItemTappedCommandProperty, value);
50 | }
51 | }
52 | }
--------------------------------------------------------------------------------
/src/Channel9/Channel9/Channel9.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 11.0
6 | Debug
7 | AnyCPU
8 | {5A9B7035-B1F2-4033-B005-788FF7D99E19}
9 | Library
10 | Properties
11 | Channel9
12 | Channel9
13 | 512
14 | v4.5
15 | Profile111
16 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
17 |
18 |
19 |
20 |
21 | true
22 | full
23 | false
24 | bin\Debug\
25 | DEBUG;TRACE
26 | prompt
27 | 4
28 |
29 |
30 | pdbonly
31 | true
32 | bin\Release\
33 | TRACE
34 | prompt
35 | 4
36 |
37 |
38 |
39 | App.xaml
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 | CustomNavigationPage.xaml
63 |
64 |
65 | HomeView.xaml
66 |
67 |
68 | MainView.xaml
69 |
70 |
71 | MenuView.xaml
72 |
73 |
74 | SplashView.xaml
75 |
76 |
77 | HomeBigItemTemplate.xaml
78 |
79 |
80 | HomeSmallItemTemplate02.xaml
81 |
82 |
83 | HomeSmallItemTemplate01.xaml
84 |
85 |
86 | MenuItemTemplate.xaml
87 |
88 |
89 |
90 |
91 | Designer
92 | MSBuild:UpdateDesignTimeXaml
93 |
94 |
95 |
96 |
97 | ..\..\packages\HtmlAgilityPack.1.6.3\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch\HtmlAgilityPack.dll
98 |
99 |
100 | ..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll
101 |
102 |
103 | ..\..\packages\Unity.4.0.1\lib\portable-net45+wp80+win8+wpa81+MonoAndroid10+MonoTouch10\Microsoft.Practices.Unity.dll
104 |
105 |
106 | ..\..\packages\Plugin.MediaManager.0.4.5\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Plugin.MediaManager.dll
107 |
108 |
109 | ..\..\packages\Plugin.MediaManager.0.4.5\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Plugin.MediaManager.Abstractions.dll
110 |
111 |
112 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll
113 |
114 |
115 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll
116 |
117 |
118 | ..\..\packages\Xamarin.Forms.3.0.0.201-gtk\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 | MSBuild:UpdateDesignTimeXaml
127 | Designer
128 |
129 |
130 |
131 |
132 | MSBuild:UpdateDesignTimeXaml
133 | Designer
134 |
135 |
136 |
137 |
138 | MSBuild:UpdateDesignTimeXaml
139 | Designer
140 |
141 |
142 |
143 |
144 | MSBuild:UpdateDesignTimeXaml
145 | Designer
146 |
147 |
148 |
149 |
150 | MSBuild:UpdateDesignTimeXaml
151 | Designer
152 |
153 |
154 |
155 |
156 | MSBuild:UpdateDesignTimeXaml
157 | Designer
158 |
159 |
160 |
161 |
162 | MSBuild:UpdateDesignTimeXaml
163 | Designer
164 |
165 |
166 |
167 |
168 | MSBuild:UpdateDesignTimeXaml
169 | Designer
170 |
171 |
172 |
173 |
174 | MSBuild:UpdateDesignTimeXaml
175 | Designer
176 |
177 |
178 |
179 |
180 |
181 |
182 | Este proyecto hace referencia a los paquetes NuGet que faltan en este equipo. Use la restauración de paquetes NuGet para descargarlos. Para obtener más información, consulte http://go.microsoft.com/fwlink/?LinkID=322105. El archivo que falta es {0}.
183 |
184 |
185 |
186 |
--------------------------------------------------------------------------------
/src/Channel9/Channel9/Controls/HorizontalList/HorizontalList.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections;
3 | using System.Collections.Generic;
4 | using System.Windows.Input;
5 | using Xamarin.Forms;
6 |
7 | namespace Channel9.Controls
8 | {
9 | public class HorizontalList : Grid
10 | {
11 | private ICommand _innerSelectedCommand;
12 | private readonly ScrollView _scrollView;
13 | private readonly StackLayout _itemsStackLayout;
14 |
15 | public event EventHandler SelectedItemChanged;
16 |
17 | public StackOrientation ListOrientation { get; set; }
18 |
19 | public double Spacing { get; set; }
20 |
21 | public static readonly BindableProperty SelectedCommandProperty =
22 | BindableProperty.Create("SelectedCommand", typeof(ICommand), typeof(HorizontalList), null);
23 |
24 | public static readonly BindableProperty ItemsSourceProperty =
25 | BindableProperty.Create("ItemsSource", typeof(IEnumerable), typeof(HorizontalList), default(IEnumerable