当前位置: 首页>>代码示例>>C#>>正文


C# RestClient.LoadThumbnail方法代码示例

本文整理汇总了C#中RestClient.LoadThumbnail方法的典型用法代码示例。如果您正苦于以下问题:C# RestClient.LoadThumbnail方法的具体用法?C# RestClient.LoadThumbnail怎么用?C# RestClient.LoadThumbnail使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在RestClient的用法示例。


在下文中一共展示了RestClient.LoadThumbnail方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ImageViewController

		public ImageViewController (string path, string name)
		{
			View.BackgroundColor = UIColor.White;

			photoPath = path;

			imageView = new UIImageView (CGRect.Empty);
			imageView.Image = UIImage.FromFile ("dropbox_not_found.png");
			imageView.TranslatesAutoresizingMaskIntoConstraints = false;
			View.Add (imageView);

			AddConstraints ();

			// Create a rest client that handle the download of the image
			restClient = new RestClient (Session.SharedSession);
			// Handle the download of the image
			restClient.ThumbnailLoaded += (sender, e) => imageView.Image = UIImage.FromFile (e.DestPath);
			// Handle if something went wrong with the download of the image
			restClient.LoadThumbnailFailed += (sender, e) => {
				imageView.Image = UIImage.FromFile ("dropbox_not_found.png");

				// Try to download the image again if the user asks for it
				var alertView = new UIAlertView ("Hmm...", "Something went wrong when trying to show the image...", null, "Not now", new [] { "Try Again" });
				alertView.Clicked += (avSender, avE) => {
					if (avE.ButtonIndex == 1)
						restClient.LoadThumbnail (path, "iphone_bestfit", PhotoPath ());
				};
				alertView.Show ();
			};

			// Show the image if you have downloaded previously, otherwise,
			// download the image and save it in the tmp folder
			if (File.Exists (PhotoPath (name)))
				imageView.Image = UIImage.FromFile (PhotoPath (name));
			else
				restClient.LoadThumbnail (photoPath, "iphone_bestfit", PhotoPath (name));
		}
开发者ID:cyecp,项目名称:XamarinComponents,代码行数:37,代码来源:ImageViewController.cs


注:本文中的RestClient.LoadThumbnail方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。