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


C# Browser.Show方法代码示例

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


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

示例1: ShowOverview

        /// <summary>
        ///     Shows strategy overview.
        /// </summary>
        private void ShowOverview(object sender, EventArgs e)
        {
            if (GeneratedDescription != string.Empty)
                Data.Strategy.Description = GeneratedDescription;

            var so = new Browser(Language.T("Strategy Overview"), Data.Strategy.GenerateHtmlOverview());
            so.Show();
        }
开发者ID:kevinegstorf,项目名称:Forex-Strategy-Builder,代码行数:11,代码来源:GeneratorGUI.cs

示例2: RSSView_LinkClicked

		void RSSView_LinkClicked(object sender, System.Windows.Forms.Samples.LinkClickedEventArgs e)
		{
			Browser browser = new Browser();

			browser.URL = e.URL;
			browser.Show();
		}
开发者ID:ehershey,项目名称:development,代码行数:7,代码来源:MainForm.cs

示例3: Show_Overview

        /// <summary>
        /// Shows strategy overview.
        /// </summary>
        protected virtual void Show_Overview(object sender, EventArgs e)
        {
            if (generatedDescription != string.Empty)
                Data.Strategy.Description = generatedDescription;

            Browser so = new Browser(Language.T("Strategy Overview"), Data.Strategy.GenerateHTMLOverview());
            so.Show();

            return;
        }
开发者ID:nuggett11,项目名称:Forex-Strategy-Builder,代码行数:13,代码来源:Generator+-+GUI.cs

示例4: Main

    public static int Main(String[] args)
    {
        KAboutData aboutdata = new KAboutData(  "p9",
                                                "Tutorial - p9", KDE.Ki18n(""),
                                                "1.0",
                                                KDE.Ki18n("Step 9 of a simple tutorial"),
                                                KAboutData.LicenseKey.License_GPL,
                                                KDE.Ki18n("(C) 2000, 2001 Antonio Larrosa Jimenez"),
                                                KDE.Ki18n(""),
                                                "http://devel-home.kde.org/~larrosa/tutorial.html" );
        aboutdata.AddAuthor(    KDE.Ki18n("Antonio Larrosa Jimenez"),
                                KDE.Ki18n("Original Developer/Maintainer"),
                                "[email protected]",
                                "http://devel-home.kde.org/~larrosa/index.html" );
        aboutdata.AddAuthor(    KDE.Ki18n("Richard Dale"),
                                KDE.Ki18n("C# port"),
                                "[email protected]",
                                "" );

        KCmdLineArgs.Init(args, aboutdata);
        KUniqueApplication a = new KUniqueApplication();

        if (!QDBusConnection.SessionBus().IsConnected()) {
            Console.Error.WriteLine("Cannot connect to the D-BUS session bus.\n" +
                                     "To start it, run:\n" +
                                     "\teval `dbus-launch --auto-syntax`\n");
            return 1;
        }

        if (!QDBusConnection.SessionBus().RegisterService("org.kde.Browser")) {
            Console.Error.WriteLine("{0}",  QDBusConnection.SessionBus().LastError().Message());
            return 1;
        }

        Browser window = new Browser("Tutorial - p9");
        window.Resize(300, 200);
        window.Show();

        QDBusConnection.SessionBus().RegisterObject("/", window, (uint) QDBusConnection.RegisterOption.ExportAllSlots);

        return KApplication.Exec();
    }
开发者ID:KDE,项目名称:kimono,代码行数:42,代码来源:p9.cs

示例5: OpenBrowser

 private static void OpenBrowser(string s)
 {
     Browser b = new Browser(s);
     b.StartPosition = FormStartPosition.CenterScreen;
     b.Show();
 }
开发者ID:karlbibby,项目名称:Darwin,代码行数:6,代码来源:SpeciesData.cs


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