实例介绍
【实例简介】
IdentityModel.OidcClient为开发者提供了一套完整的解决方案,以便更容易地实现基于OpenID Connect协议的认证和授权流程。所有示例均使用identityserver的演示实例,通过这些示例,您可以了解如何配置和使用IdentityModel.OidcClient来进行安全的用户身份验证。
除了基本的使用示例外,我们还提供了如何在Unity3D项目中使用IdentityModel.OidcClient的示例,帮助游戏开发者在游戏项目中实现认证和授权功能。
【实例截图】
【核心代码】
文件清单
└── IdentityModel.OidcClient.Samples-77d875ed5945a4f417318a2c84c20a1c5da17999
├── HttpSysConsoleClient
│ ├── ConsoleSystemBrowser
│ │ ├── App.config
│ │ ├── ConsoleSystemBrowser.csproj
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ └── ConsoleSystemBrowser.sln
├── iOS_AuthenticationServices
│ ├── iOS11Client
│ │ ├── AppDelegate.cs
│ │ ├── Assets.xcassets
│ │ │ ├── AppIcon.appiconset
│ │ │ │ └── Contents.json
│ │ │ └── Contents.json
│ │ ├── ASWebAuthenticationSessionBrowser.cs
│ │ ├── Entitlements.plist
│ │ ├── Info.plist
│ │ ├── iOS11Client.csproj
│ │ ├── LaunchScreen.storyboard
│ │ ├── Main.cs
│ │ ├── Main.storyboard
│ │ ├── PresentationProvider.cs
│ │ ├── SFAuthenticationSessionBrowser.cs
│ │ ├── User.cs
│ │ ├── ViewController.cs
│ │ └── ViewController.designer.cs
│ └── iOS11Client.sln
├── iOS_SafariServices
│ ├── iOSClient
│ │ ├── AppDelegate.cs
│ │ ├── Entitlements.plist
│ │ ├── Info.plist
│ │ ├── iOSClient.csproj
│ │ ├── Main.cs
│ │ ├── Main.storyboard
│ │ ├── Resources
│ │ │ ├── Images.xcassets
│ │ │ │ └── AppIcons.appiconset
│ │ │ │ └── Contents.json
│ │ │ └── LaunchScreen.xib
│ │ ├── ViewController.cs
│ │ └── ViewController.designer.cs
│ └── iOSClient.sln
├── LICENSE
├── Maui
│ └── MauiApp2
│ ├── global.json
│ ├── MauiApp2
│ │ ├── AppShell.xaml
│ │ ├── AppShell.xaml.cs
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ ├── MauiApp2.csproj
│ │ ├── MauiAuthenticationBrowser.cs
│ │ ├── MauiProgram.cs
│ │ ├── Platforms
│ │ │ ├── Android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── MainActivity.cs
│ │ │ │ ├── MainApplication.cs
│ │ │ │ └── Resources
│ │ │ │ └── values
│ │ │ │ └── colors.xml
│ │ │ ├── iOS
│ │ │ │ ├── AppDelegate.cs
│ │ │ │ ├── Info.plist
│ │ │ │ └── Program.cs
│ │ │ ├── MacCatalyst
│ │ │ │ ├── AppDelegate.cs
│ │ │ │ ├── Info.plist
│ │ │ │ └── Program.cs
│ │ │ ├── Tizen
│ │ │ │ ├── Main.cs
│ │ │ │ └── tizen-manifest.xml
│ │ │ └── Windows
│ │ │ ├── app.manifest
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ └── Package.appxmanifest
│ │ ├── Properties
│ │ │ └── launchSettings.json
│ │ └── Resources
│ │ ├── AppIcon
│ │ │ ├── appiconfg.svg
│ │ │ └── appicon.svg
│ │ ├── Fonts
│ │ │ ├── OpenSans-Regular.ttf
│ │ │ └── OpenSans-Semibold.ttf
│ │ ├── Images
│ │ │ └── dotnet_bot.svg
│ │ ├── Raw
│ │ │ └── AboutAssets.txt
│ │ ├── Splash
│ │ │ └── splash.svg
│ │ └── Styles
│ │ ├── Colors.xaml
│ │ └── Styles.xaml
│ └── MauiApp2.sln
├── NetCoreConsoleClient
│ ├── NetCoreConsoleClient.sln
│ └── src
│ └── NetCoreConsoleClient
│ ├── NetCoreConsoleClient.csproj
│ ├── Program.cs
│ └── SystemBrowser.cs
├── README.md
├── Uwp
│ ├── UwpSample
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Assets
│ │ │ ├── LockScreenLogo.scale-200.png
│ │ │ ├── SplashScreen.scale-200.png
│ │ │ ├── Square150x150Logo.scale-200.png
│ │ │ ├── Square44x44Logo.scale-200.png
│ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ │ ├── StoreLogo.png
│ │ │ └── Wide310x150Logo.scale-200.png
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ ├── Package.appxmanifest
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── Default.rd.xml
│ │ ├── SystemBrowser.cs
│ │ ├── UwpSample.csproj
│ │ ├── UwpSample_TemporaryKey.pfx
│ │ └── WabBrowser.cs
│ └── UwpSample.sln
├── WindowsConsoleSystemBrowser
│ ├── WindowsConsoleSystemBrowser
│ │ ├── App.config
│ │ ├── CallbackManager.cs
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ ├── RegistryConfig.cs
│ │ └── WindowsConsoleSystemBrowser.csproj
│ └── WindowsConsoleSystemBrowser.sln
├── WinFormsWebView
│ ├── WinFormsSample
│ │ ├── App.config
│ │ ├── Browser
│ │ │ ├── ExtendedBrowser.cs
│ │ │ └── WinFormsWebView.cs
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── WinFormsSample.csproj
│ └── WinFormsSample.sln
├── WinFormsWebView2
│ ├── WinFormsWebView2
│ │ ├── App.config
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── WinFormsWebView2.csproj
│ │ └── WinFormsWebView.cs
│ └── WinFormsWebView2.sln
├── WpfWebView
│ ├── MigrationBackup
│ │ └── d87b5b0f
│ │ └── WpfWebView
│ │ ├── NuGetUpgradeLog.html
│ │ ├── packages.config
│ │ └── WpfWebView.csproj
│ ├── WpfWebView
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── WpfEmbeddedBrowser.cs
│ │ └── WpfWebView.csproj
│ └── WpfWebView.sln
├── WpfWebView2
│ ├── WpfWebView2
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── WpfEmbeddedBrowser.cs
│ │ └── WpfWebView2.csproj
│ └── WpfWebView2.sln
├── XamarinAndroidClient
│ ├── AndroidClient
│ │ ├── AndroidClient.csproj
│ │ ├── Assets
│ │ │ └── AboutAssets.txt
│ │ ├── ChromeCustomTabsBrowser.cs
│ │ ├── GettingStarted.Xamarin
│ │ ├── MainActivity.cs
│ │ ├── OidcCallbackActivity.cs
│ │ ├── Properties
│ │ │ ├── AndroidManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ └── Resources
│ │ ├── AboutResources.txt
│ │ ├── layout
│ │ │ └── Main.axml
│ │ ├── Resource.Designer.cs
│ │ └── values
│ │ └── Strings.xml
│ └── AndroidClient.sln
└── XamarinForms
├── README.md
├── XamarinFormsClient
│ ├── XamarinFormsClient.Android
│ │ ├── app.config
│ │ ├── Assets
│ │ │ └── AboutAssets.txt
│ │ ├── ChromeCustomTabsBrowser.cs
│ │ ├── MainActivity.cs
│ │ ├── OidcCallbackActivity.cs
│ │ ├── Properties
│ │ │ ├── AndroidManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── drawable
│ │ │ │ └── icon.png
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ ├── Tabbar.axml
│ │ │ │ └── Toolbar.axml
│ │ │ ├── Resource.Designer.cs
│ │ │ └── values
│ │ │ └── styles.xml
│ │ └── XamarinFormsClient.Android.csproj
│ ├── XamarinFormsClient.Core
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ └── XamarinFormsClient.Core.csproj
│ ├── XamarinFormsClient.iOS
│ │ ├── app.config
│ │ ├── AppDelegate.cs
│ │ ├── ASWebAuthenticationSessionBrowser.cs
│ │ ├── Entitlements.plist
│ │ ├── Info.plist
│ │ ├── iTunesArtwork
│ │ ├── iTunesArtwork@2x
│ │ ├── Main.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default.png
│ │ │ ├── Default-Portrait@2x.png
│ │ │ ├── Default-Portrait.png
│ │ │ ├── Icon-60@2x.png
│ │ │ ├── Icon-60@3x.png
│ │ │ ├── Icon-76@2x.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon-Small@3x.png
│ │ │ ├── Icon-Small-40@2x.png
│ │ │ ├── Icon-Small-40@3x.png
│ │ │ ├── Icon-Small-40.png
│ │ │ ├── Icon-Small.png
│ │ │ └── LaunchScreen.storyboard
│ │ └── XamarinFormsClient.iOS.csproj
│ └── XamarinFormsClient.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
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Package.appxmanifest
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── Default.rd.xml
│ ├── WabBrowser.cs
│ ├── XamarinFormsClient.UWP.csproj
│ └── XamarinFormsClient.UWP_TemporaryKey.pfx
└── XamarinFormsClient.sln
82 directories, 257 files
IdentityModel.OidcClient为开发者提供了一套完整的解决方案,以便更容易地实现基于OpenID Connect协议的认证和授权流程。所有示例均使用identityserver的演示实例,通过这些示例,您可以了解如何配置和使用IdentityModel.OidcClient来进行安全的用户身份验证。
除了基本的使用示例外,我们还提供了如何在Unity3D项目中使用IdentityModel.OidcClient的示例,帮助游戏开发者在游戏项目中实现认证和授权功能。
【实例截图】
【核心代码】
文件清单
└── IdentityModel.OidcClient.Samples-77d875ed5945a4f417318a2c84c20a1c5da17999
├── HttpSysConsoleClient
│ ├── ConsoleSystemBrowser
│ │ ├── App.config
│ │ ├── ConsoleSystemBrowser.csproj
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ └── ConsoleSystemBrowser.sln
├── iOS_AuthenticationServices
│ ├── iOS11Client
│ │ ├── AppDelegate.cs
│ │ ├── Assets.xcassets
│ │ │ ├── AppIcon.appiconset
│ │ │ │ └── Contents.json
│ │ │ └── Contents.json
│ │ ├── ASWebAuthenticationSessionBrowser.cs
│ │ ├── Entitlements.plist
│ │ ├── Info.plist
│ │ ├── iOS11Client.csproj
│ │ ├── LaunchScreen.storyboard
│ │ ├── Main.cs
│ │ ├── Main.storyboard
│ │ ├── PresentationProvider.cs
│ │ ├── SFAuthenticationSessionBrowser.cs
│ │ ├── User.cs
│ │ ├── ViewController.cs
│ │ └── ViewController.designer.cs
│ └── iOS11Client.sln
├── iOS_SafariServices
│ ├── iOSClient
│ │ ├── AppDelegate.cs
│ │ ├── Entitlements.plist
│ │ ├── Info.plist
│ │ ├── iOSClient.csproj
│ │ ├── Main.cs
│ │ ├── Main.storyboard
│ │ ├── Resources
│ │ │ ├── Images.xcassets
│ │ │ │ └── AppIcons.appiconset
│ │ │ │ └── Contents.json
│ │ │ └── LaunchScreen.xib
│ │ ├── ViewController.cs
│ │ └── ViewController.designer.cs
│ └── iOSClient.sln
├── LICENSE
├── Maui
│ └── MauiApp2
│ ├── global.json
│ ├── MauiApp2
│ │ ├── AppShell.xaml
│ │ ├── AppShell.xaml.cs
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ ├── MauiApp2.csproj
│ │ ├── MauiAuthenticationBrowser.cs
│ │ ├── MauiProgram.cs
│ │ ├── Platforms
│ │ │ ├── Android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── MainActivity.cs
│ │ │ │ ├── MainApplication.cs
│ │ │ │ └── Resources
│ │ │ │ └── values
│ │ │ │ └── colors.xml
│ │ │ ├── iOS
│ │ │ │ ├── AppDelegate.cs
│ │ │ │ ├── Info.plist
│ │ │ │ └── Program.cs
│ │ │ ├── MacCatalyst
│ │ │ │ ├── AppDelegate.cs
│ │ │ │ ├── Info.plist
│ │ │ │ └── Program.cs
│ │ │ ├── Tizen
│ │ │ │ ├── Main.cs
│ │ │ │ └── tizen-manifest.xml
│ │ │ └── Windows
│ │ │ ├── app.manifest
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ └── Package.appxmanifest
│ │ ├── Properties
│ │ │ └── launchSettings.json
│ │ └── Resources
│ │ ├── AppIcon
│ │ │ ├── appiconfg.svg
│ │ │ └── appicon.svg
│ │ ├── Fonts
│ │ │ ├── OpenSans-Regular.ttf
│ │ │ └── OpenSans-Semibold.ttf
│ │ ├── Images
│ │ │ └── dotnet_bot.svg
│ │ ├── Raw
│ │ │ └── AboutAssets.txt
│ │ ├── Splash
│ │ │ └── splash.svg
│ │ └── Styles
│ │ ├── Colors.xaml
│ │ └── Styles.xaml
│ └── MauiApp2.sln
├── NetCoreConsoleClient
│ ├── NetCoreConsoleClient.sln
│ └── src
│ └── NetCoreConsoleClient
│ ├── NetCoreConsoleClient.csproj
│ ├── Program.cs
│ └── SystemBrowser.cs
├── README.md
├── Uwp
│ ├── UwpSample
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Assets
│ │ │ ├── LockScreenLogo.scale-200.png
│ │ │ ├── SplashScreen.scale-200.png
│ │ │ ├── Square150x150Logo.scale-200.png
│ │ │ ├── Square44x44Logo.scale-200.png
│ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ │ ├── StoreLogo.png
│ │ │ └── Wide310x150Logo.scale-200.png
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ ├── Package.appxmanifest
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── Default.rd.xml
│ │ ├── SystemBrowser.cs
│ │ ├── UwpSample.csproj
│ │ ├── UwpSample_TemporaryKey.pfx
│ │ └── WabBrowser.cs
│ └── UwpSample.sln
├── WindowsConsoleSystemBrowser
│ ├── WindowsConsoleSystemBrowser
│ │ ├── App.config
│ │ ├── CallbackManager.cs
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ ├── RegistryConfig.cs
│ │ └── WindowsConsoleSystemBrowser.csproj
│ └── WindowsConsoleSystemBrowser.sln
├── WinFormsWebView
│ ├── WinFormsSample
│ │ ├── App.config
│ │ ├── Browser
│ │ │ ├── ExtendedBrowser.cs
│ │ │ └── WinFormsWebView.cs
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── WinFormsSample.csproj
│ └── WinFormsSample.sln
├── WinFormsWebView2
│ ├── WinFormsWebView2
│ │ ├── App.config
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── WinFormsWebView2.csproj
│ │ └── WinFormsWebView.cs
│ └── WinFormsWebView2.sln
├── WpfWebView
│ ├── MigrationBackup
│ │ └── d87b5b0f
│ │ └── WpfWebView
│ │ ├── NuGetUpgradeLog.html
│ │ ├── packages.config
│ │ └── WpfWebView.csproj
│ ├── WpfWebView
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── WpfEmbeddedBrowser.cs
│ │ └── WpfWebView.csproj
│ └── WpfWebView.sln
├── WpfWebView2
│ ├── WpfWebView2
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── WpfEmbeddedBrowser.cs
│ │ └── WpfWebView2.csproj
│ └── WpfWebView2.sln
├── XamarinAndroidClient
│ ├── AndroidClient
│ │ ├── AndroidClient.csproj
│ │ ├── Assets
│ │ │ └── AboutAssets.txt
│ │ ├── ChromeCustomTabsBrowser.cs
│ │ ├── GettingStarted.Xamarin
│ │ ├── MainActivity.cs
│ │ ├── OidcCallbackActivity.cs
│ │ ├── Properties
│ │ │ ├── AndroidManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ └── Resources
│ │ ├── AboutResources.txt
│ │ ├── layout
│ │ │ └── Main.axml
│ │ ├── Resource.Designer.cs
│ │ └── values
│ │ └── Strings.xml
│ └── AndroidClient.sln
└── XamarinForms
├── README.md
├── XamarinFormsClient
│ ├── XamarinFormsClient.Android
│ │ ├── app.config
│ │ ├── Assets
│ │ │ └── AboutAssets.txt
│ │ ├── ChromeCustomTabsBrowser.cs
│ │ ├── MainActivity.cs
│ │ ├── OidcCallbackActivity.cs
│ │ ├── Properties
│ │ │ ├── AndroidManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── drawable
│ │ │ │ └── icon.png
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ │ ├── Tabbar.axml
│ │ │ │ └── Toolbar.axml
│ │ │ ├── Resource.Designer.cs
│ │ │ └── values
│ │ │ └── styles.xml
│ │ └── XamarinFormsClient.Android.csproj
│ ├── XamarinFormsClient.Core
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ └── XamarinFormsClient.Core.csproj
│ ├── XamarinFormsClient.iOS
│ │ ├── app.config
│ │ ├── AppDelegate.cs
│ │ ├── ASWebAuthenticationSessionBrowser.cs
│ │ ├── Entitlements.plist
│ │ ├── Info.plist
│ │ ├── iTunesArtwork
│ │ ├── iTunesArtwork@2x
│ │ ├── Main.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default.png
│ │ │ ├── Default-Portrait@2x.png
│ │ │ ├── Default-Portrait.png
│ │ │ ├── Icon-60@2x.png
│ │ │ ├── Icon-60@3x.png
│ │ │ ├── Icon-76@2x.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon-Small@3x.png
│ │ │ ├── Icon-Small-40@2x.png
│ │ │ ├── Icon-Small-40@3x.png
│ │ │ ├── Icon-Small-40.png
│ │ │ ├── Icon-Small.png
│ │ │ └── LaunchScreen.storyboard
│ │ └── XamarinFormsClient.iOS.csproj
│ └── XamarinFormsClient.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
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Package.appxmanifest
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── Default.rd.xml
│ ├── WabBrowser.cs
│ ├── XamarinFormsClient.UWP.csproj
│ └── XamarinFormsClient.UWP_TemporaryKey.pfx
└── XamarinFormsClient.sln
82 directories, 257 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论