Exemple #1
0
        private void StackPanel_Tap_2(object sender, System.Windows.Input.GestureEventArgs e)
        {
            AboutPromptItem[] people = new AboutPromptItem[4];
            //public void Show(string authorName, string twitterName = null, string emailAddress = null, string websiteUrl = null);
            people[0] = new AboutPromptItem()
            {
                AuthorName = "Osman Şekerlen", EmailAddress = "*****@*****.**", WebSiteUrl = "https://www.google.com.tr", Role = "WP8"
            };
            people[1] = new AboutPromptItem()
            {
                AuthorName = "Doğukan Ergün", EmailAddress = "*****@*****.**", WebSiteUrl = "https://www.google.com.tr", Role = "Android"
            };
            people[2] = new AboutPromptItem()
            {
                AuthorName = "Taha Doğan Güneş", EmailAddress = "*****@*****.**", WebSiteUrl = "https://www.google.com.tr", Role = "iOS"
            };
            people[3] = new AboutPromptItem()
            {
                AuthorName = "Ömer Kala", EmailAddress = "*****@*****.**", WebSiteUrl = "https://www.google.com.tr", Role = "API"
            };
            AboutPrompt about = new AboutPrompt();

            about.Title         = AppResources.AboutButtonText;
            about.VersionNumber = "v" + MainPage.version;
            about.Show(people);
        }
Exemple #2
0
        public static void ShowAbout()
        {
            Deployment.Current.Dispatcher.BeginInvoke(() =>
            {
                var about = new AboutPrompt {
                    Title = "Evolve Quest", VersionNumber = "v1.0"
                };
                var xamarin = new AboutPromptItem
                {
                    AuthorName   = "Created In C# with Xamarin \nwith 60%+ Shared Code\n\nCopyright 2014 Xamarin",
                    EmailAddress = "*****@*****.**",
                    WebSiteUrl   = "http://www.xamarin.com"
                };

                var privacy = new AboutPromptItem
                {
                    AuthorName = "Privacy Policy",
                    WebSiteUrl = "http://www.xamarin.com/privacy"
                };

                var tech = new AboutPromptItem
                {
                    AuthorName = "Technology Use\nZXigng.NET\nCross Platform QR Code Scanning\nCoding4Fun\nXam.PCL Settings\nJson.NET\nWindows Phone Toolkit"
                };


                about.Show(xamarin, privacy, tech);
            });
        }
        public static void ShowAbout()
        {
            Deployment.Current.Dispatcher.BeginInvoke(() =>
                {
                    var about = new AboutPrompt { Title = "Evolve Quest", VersionNumber = "v1.0" };
                    var xamarin = new AboutPromptItem
                    {
                        AuthorName = "Created In C# with Xamarin \nwith 60%+ Shared Code\n\nCopyright 2014 Xamarin",
                        EmailAddress = "*****@*****.**",
                        WebSiteUrl = "http://www.xamarin.com"
                    };

                    var privacy = new AboutPromptItem
                    {
                        AuthorName = "Privacy Policy",
                        WebSiteUrl = "http://www.xamarin.com/privacy"
                    };

                    var tech = new AboutPromptItem
                    {
                        AuthorName = "Technology Use\nZXigng.NET\nCross Platform QR Code Scanning\nCoding4Fun\nXam.PCL Settings\nJson.NET\nWindows Phone Toolkit"
                    };

        
                    about.Show(xamarin, privacy, tech);
                });
        }
Exemple #4
0
        private void About_Click(object sender, RoutedEventArgs e)
        {
            var about = new AboutPrompt();

            about.Completed += baseObject_Completed;
            about.Show();
        }
		private void AboutPromptBlankClick(object sender, RoutedEventArgs e)
		{
			var about = new AboutPrompt();
			about.Completed += PopUpPromptObjectCompleted;

			about.Show();
		}
		private void AboutPromptBasicClick(object sender, RoutedEventArgs e)
		{
			var about = new AboutPrompt();
			about.Completed += PopUpPromptObjectCompleted;

			about.Show("Clint Rutkas", "ClintRutkas", "*****@*****.**", "http://betterthaneveryone.com");
		}
Exemple #7
0
        private void TextBlock_Tap_PaisesBajos(object sender, GestureEventArgs e)
        {
            AboutPrompt p = new AboutPrompt();

            p.Title = "";
            p.Body  = new PaisesBajos();
            p.Show();
        }
        /// <summary>
        /// The button about click.
        /// </summary>
        /// <param name="sender">
        /// The sender.
        /// </param>
        /// <param name="e">
        /// The e.
        /// </param>
        private void BtnAboutClick(object sender, EventArgs e)
        {
            var aboutprompt = new AboutPrompt {
                Body = new AboutControl()
            };

            aboutprompt.Show();
        }
Exemple #9
0
        private void AboutButton_Click(object sender, EventArgs e)
        {
            var p = new AboutPrompt {
                Title = "FoulPlay", VersionNumber = "v.Stable"
            };

            p.Show("Tim Miller (DrasticActions)", "@innerlogic", "*****@*****.**", @"http://twitter.com/innerlogic");
        }
Exemple #10
0
        private void AboutPromptBasicClick(object sender, RoutedEventArgs e)
        {
            var about = new AboutPrompt();

            about.Completed += PopUpPromptObjectCompleted;

            about.Show("Clint Rutkas", "ClintRutkas", "*****@*****.**", "http://betterthaneveryone.com");
        }
Exemple #11
0
        private void ApplicationBarMenuItem_Click_3(object sender, EventArgs e)
        {
            var about = new AboutPrompt();

            about.Completed += PopUpPromptObjectCompleted;

            about.Show("Vl Studio.", "Sorry I dont use ! ", "*****@*****.**", "http://lucstudio.com");
        }
Exemple #12
0
 private void AboutApplicationBarIconButton_Click(object sender, EventArgs e)
 {
     AboutPrompt about = new AboutPrompt();
     about.Title = "About";
     about.VersionNumber = "Version 1.0";
     about.Body = new TextBlock { Text = "Designed and Developed by OpenSource Team - BDotNet", TextWrapping = TextWrapping.Wrap };
     about.Show();
 }
Exemple #13
0
        private void TextBlock_Tap_IrlandaNorte(object sender, GestureEventArgs e)
        {
            AboutPrompt p = new AboutPrompt();

            p.Title = "";
            p.Body  = new IrlandaNorte();
            p.Show();
        }
Exemple #14
0
        private void TextBlock_Tap_Francia(object sender, GestureEventArgs e)
        {
            AboutPrompt p = new AboutPrompt();

            p.Title = "";
            p.Body  = new Francia();
            p.Show();
        }
Exemple #15
0
        private void aboutItem_Click(object sender, EventArgs e)
        {
            AboutPrompt aboutPrompt = new AboutPrompt();

            aboutPrompt.VersionNumber = "version:1.0";
            aboutPrompt.Title         = "关于Luoo";
            aboutPrompt.Show("XiaoTian", "", "*****@*****.**", @"http://www.cnblogs.com/au-xiaotian/");
        }
Exemple #16
0
        private void AboutPromptBlankClick(object sender, RoutedEventArgs e)
        {
            var about = new AboutPrompt();

            about.Completed += PopUpPromptObjectCompleted;

            about.Show();
        }
Exemple #17
0
 private void ApplicationBarMenuItem_About_Click(object sender, EventArgs e)
 {
     AboutPrompt about = new AboutPrompt();
     about.Title = "GooCalTask";
     about.Footer = "Université Pierre et Marie Curie 2012-2013";
     about.VersionNumber = "Version 1.0";
     about.Body = new TextBlock { Text = "Developed By :\n\n-DOUANT Vincent\n-HING Joel\n-INTHAVIXAY David\n-JEAN-BAPTISTE Guerline\n-POK Patrick", TextWrapping = TextWrapping.Wrap };
     about.Show();
 }
		private void AboutPromptLongClick(object sender, RoutedEventArgs e)
		{
			var about = new AboutPrompt { Title = "Custom Title", VersionNumber = "v3.14159265" };
			about.Completed += PopUpPromptObjectCompleted;

			about.Show(
				new AboutPromptItem { Role = "dev", AuthorName = "Clint Rutkas" },
				new AboutPromptItem { Role = "site", WebSiteUrl = "http://coding4fun.com" });
		}
Exemple #19
0
        private void SearchPrefButton_Click(object sender, EventArgs e)
        {
            AboutPrompt about = new AboutPrompt {
                Body = new SearchControl(), Title = "Define Search"
            };

            about.Completed += about_Completed;
            about.Show();
        }
 private void AboutMenuItem_Click(object sender, EventArgs e)
 {
     var about = new AboutPrompt()
     {
         Title = Localization.AppResources.MainView_About_Title,
         Body = Localization.AppResources.MainView_About_Body,
     };
     about.Show();
 }
Exemple #21
0
        private void AboutMenuItem_Click(object sender, EventArgs e)
        {
            var about = new AboutPrompt()
            {
                Title = Localization.AppResources.MainView_About_Title,
                Body  = Localization.AppResources.MainView_About_Body,
            };

            about.Show();
        }
Exemple #22
0
        private void gioithieu_MouseEnter_1(object sender, MouseEventArgs e)
        {
            AboutPrompt prompt = new AboutPrompt();

            prompt.Title         = "Ai là triệu phú";
            prompt.VersionNumber = "Phiên bản 1.0";
            prompt.Body          = "Gameshow Ai là triệu phú phiên bản cho \nsmartphone trên nền tảng Windows Phone."
                                   + "\nChúc các bạn chơi game vui vẻ.";
            prompt.Show();
        }
 private void btnHelp_Click(object sender, RoutedEventArgs e)
 {
     AboutPrompt howToPlay = new AboutPrompt();
     howToPlay.Title = "How to Play";
     howToPlay.Footer = "[email protected]\nhttp://facebook.com/nemoryoliver";
     howToPlay.VersionNumber = "Version 1.0";
     howToPlay.Body = new TextBlock
     {
         Text = "To earn points: just click on the right answer. :)\n\nTo navigate to other types of questions: Just simply swipe from left to right or from right to left\n\nHow to finnish the game: Just finnish all the questions then you will see your score and time elapsed and be able to share your result. :)\n\nIf you want to quit: just click on the Windows Start Button",
         TextWrapping = TextWrapping.Wrap
     };
     howToPlay.Show();
 }
 private void btnAbout_Click(object sender, RoutedEventArgs e)
 {
     AboutPrompt about = new AboutPrompt();
     about.Title = "About BundledFun";
     about.Footer = "[email protected]\nhttp://facebook.com/nemoryoliver";
     about.VersionNumber = "Version 1.0";
     about.Body = new TextBlock
     {
         Text = "BundledFun is a fun quiz game for Windows Phone and developed by a Filipino Indie Developer: Oliver Martinez (or NemOry). \n\nIt supports Image, Text, Audio and Video types of questions.\n\n It is targeted for happy users :)",
         TextWrapping = TextWrapping.Wrap
     };
     about.Show();
 }
        /// <summary>
        /// Method to display the About prompt which contains the Release notes
        /// </summary>
        public void ShowAboutPrompt()
        {
            var prompt = new AboutPrompt();

            prompt.LblVersion.Content = string.Format("Version {0}", m_programVersion);

            foreach (var item in RevisionNotes.GetRevNotes())
            {
                prompt.CtlReleaseList.Items.Add(item);
            }

            prompt.ShowDialog();
        }
 private void StackPanel_Tap_2(object sender, System.Windows.Input.GestureEventArgs e)
 {
     AboutPromptItem[] people = new AboutPromptItem[4];
     //public void Show(string authorName, string twitterName = null, string emailAddress = null, string websiteUrl = null);
     people[0] = new AboutPromptItem() { AuthorName = "Osman Şekerlen", EmailAddress = "*****@*****.**", WebSiteUrl = "https://www.google.com.tr", Role="WP8" };
     people[1] = new AboutPromptItem() { AuthorName = "Doğukan Ergün", EmailAddress = "*****@*****.**", WebSiteUrl = "https://www.google.com.tr", Role = "Android" };
     people[2] = new AboutPromptItem() { AuthorName = "Taha Doğan Güneş", EmailAddress = "*****@*****.**", WebSiteUrl = "https://www.google.com.tr", Role = "iOS" };
     people[3] = new AboutPromptItem() { AuthorName = "Ömer Kala", EmailAddress = "*****@*****.**", WebSiteUrl = "https://www.google.com.tr", Role = "API" };
     AboutPrompt about = new AboutPrompt();
     about.Title = AppResources.AboutButtonText;
     about.VersionNumber = "v" + MainPage.version;
     about.Show(people);
 }
 private void btnHelp_Click(object sender, RoutedEventArgs e)
 {
     AboutPrompt howToPlay = new AboutPrompt();
     howToPlay.Title = "How to Play";
     howToPlay.Footer = "[email protected]\n";
     howToPlay.VersionNumber = "Version 1.0";
     howToPlay.Body = new TextBlock
     {
         Text = "To earn points: just click on the right answer. :)\n\nTo navigate to other types of questions: Just simply swipe from left to right or from right to left.\n\nIf you want to quit: just click on the Windows Start Button",
         TextWrapping = TextWrapping.Wrap
     };
     howToPlay.Show();
 }
 private void btnAbout_Click(object sender, RoutedEventArgs e)
 {
     AboutPrompt about = new AboutPrompt();
     about.Title = "About BundledFun";
     about.Footer = "[email protected]\n";
     about.VersionNumber = "Version 1.0";
     about.Body = new TextBlock
     {
         Text = "BundledFun is a fun quiz game for Windows Phone. \n\nIt supports Image, Text, Audio and Video types of questions.\n\n It is targeted for happy users :)",
         TextWrapping = TextWrapping.Wrap
     };
     about.Show();
 }
        private void DownloadSetting(object sender, EventArgs e)
        {
            Model.DownloadStartIndex = 1;
            Model.ChapterToBeDownloadedCount = 10;

            var messagePrompt = new AboutPrompt
                                    {
                                        Title = "下载设置",
                                        Body = new DownloadSetting(),
                                        IsAppBarVisible = true,
                                        DataContext = Model,
                                    };
            messagePrompt.Show();
        }
        void appBarMenuItem_Click(object sender, EventArgs e)
        {
            AboutPrompt AboutMe = new AboutPrompt();
            AboutMe.Show(AppResources.DeveloperName,"",AppResources.DeveloperEmail,AppResources.WindowsStoreLink);

            //AboutPrompt p = new AboutPrompt();
            //p.Title = "Contact Me";
            //AboutPromptItem item = new AboutPromptItem();
            //item.AuthorName = "Siddarth Goyal";
            //item.EmailAddress = @"*****@*****.**";
            //item.Role = "windows phone dev";
            //item.WebSiteUrl = @"www.windowsphonegeek.com";
            //p.Show(item);

            //throw new NotImplementedException();
        }
Exemple #31
0
        private void InitializePrompt()
        {
            //var reuseObject = ReuseObject.IsChecked.GetValueOrDefault(false);

            if (_prompt != null)
            {
                _prompt.Completed -= PromptCompleted;
            }

            //if (!reuseObject || _prompt == null)
            {
                _prompt = new AboutPrompt();
            }

            _prompt.Completed += PromptCompleted;
        }
Exemple #32
0
        private void AboutPromptLongClick(object sender, RoutedEventArgs e)
        {
            var about = new AboutPrompt {
                Title = "Custom Title", VersionNumber = "v3.14159265"
            };

            about.Completed += PopUpPromptObjectCompleted;

            about.Show(
                new AboutPersonItem {
                Role = "dev", AuthorName = "Clint Rutkas"
            },
                new AboutPersonItem {
                Role = "site", WebSiteUrl = "http://coding4fun.com"
            });
        }
        private void InitializePrompt()
        {
            //var reuseObject = ReuseObject.IsChecked.GetValueOrDefault(false);

            if (_prompt != null)
            {
                _prompt.Completed -= PromptCompleted;
            }

            //if (!reuseObject || _prompt == null)
            {
                _prompt = new AboutPrompt();
            }

            _prompt.Completed += PromptCompleted;
        }
        void appBarMenuItem_Click(object sender, EventArgs e)
        {
            AboutPrompt AboutMe = new AboutPrompt();

            AboutMe.Show(AppResources.DeveloperName, "", AppResources.DeveloperEmail, AppResources.WindowsStoreLink);

            //AboutPrompt p = new AboutPrompt();
            //p.Title = "Contact Me";
            //AboutPromptItem item = new AboutPromptItem();
            //item.AuthorName = "Siddarth Goyal";
            //item.EmailAddress = @"*****@*****.**";
            //item.Role = "windows phone dev";
            //item.WebSiteUrl = @"www.windowsphonegeek.com";
            //p.Show(item);

            //throw new NotImplementedException();
        }
Exemple #35
0
        void aboutAppBar_Click(object sender, EventArgs e)
        {
            AboutPrompt aboutMe = new AboutPrompt();

            aboutMe.Title         = "DayCounter";
            aboutMe.VersionNumber = "Version 1.0";
            AboutPromptItem item1 = new AboutPromptItem();
            AboutPromptItem item2 = new AboutPromptItem();
            AboutPromptItem item3 = new AboutPromptItem();

            item1.AuthorName   = "Yk Poh";
            item2.EmailAddress = @"*****@*****.**";
            item3.WebSiteUrl   = "@yk_poh";
            item1.Role         = "author";
            item2.Role         = "email";
            item3.Role         = "twitter";
            aboutMe.Show(item1, item2, item3);
        }
Exemple #36
0
        private void mnuAbout_Click(object sender, EventArgs e)
        {
            TextBlock tb = new TextBlock
            {
                Text = "Have fun with your finger and alot of colors, but don't make yourself dirty\n\nBy "
                       + Coding4Fun.Toolkit.Controls.Common.PhoneHelper.GetAppAttribute("Author")
                       + "\n\nVersion " + Coding4Fun.Toolkit.Controls.Common.PhoneHelper.GetAppAttribute("Version"),
                HorizontalAlignment = System.Windows.HorizontalAlignment.Stretch,
                VerticalAlignment   = System.Windows.VerticalAlignment.Stretch,
                TextWrapping        = TextWrapping.Wrap,
            };
            AboutPrompt abt = new AboutPrompt
            {
                VersionNumber = "",
                Body          = tb
            };

            abt.Show();
        }
Exemple #37
0
        public static void DisplayDialog()
        {
            bool isFirstTimeUse = true;

            //Compare the version number given and the one which was saved last time
            if (settings.Contains("VersionNumber") && (VersionNumber.Trim() == settings["VersionNumber"].ToString()))
            {
                isFirstTimeUse = false;
            }

            if (isFirstTimeUse)
            {

                AboutPrompt about = new AboutPrompt();
                about.Title = Title;
                about.VersionNumber = VersionNumber;
                about.Body = new TextBlock { Text = Message, TextWrapping = TextWrapping.Wrap, Style = Application.Current.Resources["PhoneTextTitle2Style"] as Style };
                about.VerticalContentAlignment = System.Windows.VerticalAlignment.Center;
                about.Completed += about_Completed;
                about.Show();
            }
        }
        private void AboutPrompt_Click(object sender, EventArgs e)
        {
            // I got lazy with my MVVM.... :-(

            AboutPrompt about = new AboutPrompt();
            //about.Completed += about_Completed;
            about.Title = "i-Racer";
            about.VersionNumber = "Version 1.0";
            about.Footer = @"(c) 2013 appDevPro";
            // about.WaterMark = "Applications Development Professionals";
            about.Body =
                new TextBlock
                {
                    Text =
                        "Control the Dagu i-Racer Bluetooth remote control car\n\nWritten by @jhalbrecht @AppDevPro\n\nCheck out http://www.appdevpro.com",
                    TextWrapping = TextWrapping.Wrap
                };

            //AboutPersonItem item = new AboutPersonItem();
            //item.Author = "jeffa";

            // about.Show(@"@jhalbrecht", "@appdevpro", "*****@*****.**", @"http://www.AppDevPro.com");
            about.Show();
        }
Exemple #39
0
 private void SearchPrefButton_Click(object sender, EventArgs e)
 {
     AboutPrompt about = new AboutPrompt { Body = new SearchControl(), Title = "Define Search" };
     about.Completed += about_Completed;
     about.Show();
 }
Exemple #40
0
        private void Grid_Tap(object sender, System.Windows.Input.GestureEventArgs e)
        {
            AboutPrompt aboutMe = new AboutPrompt();

            aboutMe.Show("Elroy Alva", "@elroyalva", "*****@*****.**");
        }
		private void About_Click(object sender, RoutedEventArgs e)
		{
			var about = new AboutPrompt();
			about.Completed += baseObject_Completed;
			about.Show();
		}
 private void BtnHighScoreClick1(object sender, RoutedEventArgs e)
 {
     AboutPrompt p = new AboutPrompt { Title = string.Empty, VersionNumber = string.Empty, Body = new HighScores() };
     p.Show();
 }
Exemple #43
0
 private void Button1_Click(object sender, System.Windows.RoutedEventArgs e)
 {
     AboutPrompt p = new AboutPrompt();
     p.Show("Felipe Pimentel", "@felipepimentell", "*****@*****.**", @"http://invistatecnologia.com");
 }
Exemple #44
0
        private void AboutClick(object sender, EventArgs e)
        {
            AboutPrompt aboutMe = new AboutPrompt();

            aboutMe.Show("Channel 9", "@ch9", "*****@*****.**", "http://channel9.msdn.com");
        }
Exemple #45
0
        private void ShowAboutPrompt()
        {
            this.LayoutRoot.SetValue(Panorama.SelectedIndexProperty, 0);
            this.LayoutRoot.Measure(new Size());

            var aboutPrompt = new AboutPrompt() {
                Title = "SyncUp for Eve",
                VersionNumber = "Version 0.1 Alpha",
                Footer = "Visit us at http://eve.toplek.net"
            };
            aboutPrompt.Show();
        }
 private void btnAboutUs_Click(object sender, RoutedEventArgs e)
 {
     AboutPrompt p = new AboutPrompt();
     p.Show("Felipe Pimentel", "@felipepimentell", "*****@*****.**", @"http://invistatecnologia.com");
 }   
 private void ApplicationBarIconButton_Click_4(object sender, EventArgs e)
 {
     AboutPrompt p = new AboutPrompt();
     p.Show("Felipe Pimentel", "@felipepimentell", "*****@*****.**", @"http://invistatecnologia.com");
 }
Exemple #48
0
        void aboutAppBar_Click(object sender, EventArgs e)
        {
            AboutPrompt aboutMe = new AboutPrompt();

            aboutMe.Show("Leon Christopher Scott", "@leoncscott543", "*****@*****.**", "https://www.facebook.com/leoncscott543");
        }
        private void ShowSettings(object sender, EventArgs e)
        {
            AboutPrompt p = new AboutPrompt();
            p.Title = "Settings";
            p.VersionNumber = "";
            p.Body = new SettingsPopup();
            p.Completed += settings_Closed;

            p.Show();
        }
 private void aboutMenuItem_Click(object sender, EventArgs e)
 {
     AboutPrompt ap = new AboutPrompt();
     ap.Show("Shayan Anique", "shayan_anique", "*****@*****.**", "http://www.shayananique.com");
 }
 void About_Click(object sender, EventArgs e)
 {
     AboutPrompt AboutAuthor = new AboutPrompt();
     AboutAuthor.Show("Milin Joshi", "@milincjoshi", "*****@*****.**", "http://milincjoshi.wordpress.com");
 }
Exemple #52
0
        private void ApplicationBarMenuItem_Click(object sender, EventArgs e)
        {
            AboutPrompt aboutMe = new AboutPrompt();

            aboutMe.Show("Super Lazy", "superlazyapps", "*****@*****.**", "http://www.superlazy.tk");
        }
        private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            AboutPrompt p = new AboutPrompt();
            p.Title = "";
            p.VersionNumber = "";


            Button b = (Button)sender;

            if (txtBelly.Visibility == Visibility.Visible)
            {
                    switch (b.Name)
                {
                    case "btnCollar": p.Body = new ImagePopup("collar_male.png");
                        break;
                    case "btnChest": p.Body = new ImagePopup("chest_male.png");
                        break;
                    case "btnSleeve": p.Body = new ImagePopup("sleeve_male.png");
                        break;
                    case "btnShoulder": p.Body = new ImagePopup("shoulder_male.png");
                        break;
                    case "btnArm": p.Body = new ImagePopup("arm_male.png");
                        break;
                    case "btnWrist": p.Body = new ImagePopup("wrist_male.png");
                        break;
                    case "btnBelly": p.Body = new ImagePopup("belly_male.png");
                        break;
                    case "btnWaist": p.Body = new ImagePopup("waist_male.png");
                        break;
                    case "btnBack": p.Body = new ImagePopup("back_male.png");
                        break;
                    case "btnBmi": p.Body = new ImagePopup("bmi.png");
                        break;
                }
            }else
            {
                switch (b.Name)
                    {
                        case "btnCollar": p.Body = new ImagePopup("col_female.png");
                            break;
                        case "btnUpperbust": p.Body = new ImagePopup("upperbust.png");
                            break;
                        case "btnUnderbust": p.Body = new ImagePopup("underbust.png");
                            break;
                        case "btnSleeve": p.Body = new ImagePopup("sleeve_female.png");
                            break;
                        case "btnShoulder": p.Body = new ImagePopup("shoulder_female.png");
                            break;
                        case "btnArm": p.Body = new ImagePopup("arm_female.png");
                            break;
                        case "btnWrist": p.Body = new ImagePopup("wrist_female.png");
                            break;
                        case "btnHips": p.Body = new ImagePopup("hip_female.png");
                            break;
                        case "btnWaist": p.Body = new ImagePopup("waist_female.png");
                            break;
                        case "btnBack": p.Body = new ImagePopup("back_female.png");
                            break;
                        case "btnBmi": p.Body = new ImagePopup("bmi.png");
                            break;
                    }
            }
            
            p.Show();
            
           
        }
 void aboutAppBar_Click(object sender, EventArgs e)
 {
     AboutPrompt aboutMe= new AboutPrompt();
     aboutMe.Show("DYDYD", null, "*****@*****.**");
 }
Exemple #55
0
 private void ApplicationBarIconButton_Click(object sender, EventArgs e)
 {
     AboutPrompt aboutMe = new AboutPrompt();
     aboutMe.Show("Michal Warkoczynski", null, "*****@*****.**", "http://wi.zut.edu.pl");
 }