BetterExplorer.Networks.AccountAuthWindow.LoadStorageServices C# (CSharp) Метод

LoadStorageServices() публичный Метод

public LoadStorageServices ( ) : void
Результат void
		public void LoadStorageServices() {
			AddAccountEntry aa1 = new AddAccountEntry();
			aa1.Text = "Dropbox";
			aa1.Icon = new BitmapImage(new Uri(@"/BetterExplorer;component/Networks/Icons/dropbox32.png", UriKind.Relative));
			aa1.ItemSelected += Dropbox_ItemSelected;
			pnlServices.Children.Add(aa1);

			AddAccountEntry aa2 = new AddAccountEntry();
			aa2.Text = "Google Drive (not yet added)";
			pnlServices.Children.Add(aa2);
		}