書式設定したテキストのハイパーリンクと画像の相対的なソースを指定することができます。デフォルトの動作は、URL を解決して関連づけられたリソースにアクセスするためにアプリケーションの現在のパスを使用することです。相対的な URL を解決する方法を制御するために BaseURL プロパティを使用できます。また、FormattedLinkEditor の BaseURLDefault プロパティを設定することによって、ベース URL をアプリケーション全体に設定できます。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.Misc Imports Infragistics.Win.FormattedLinkLabel Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click ' You can also specify a default base url for all instances of ' UltraFormattedLinkLabel, UltraFormattedTextEditor and FormattedLinkEditor ' in the entire application by setting the static BaseURLDefault property ' of the FormattedLinkEditor. FormattedLinkEditor.BaseURLDefault = "http://www.infragistics.com" ' You can also set it on a specific control. Me.ultraFormattedLinkLabel1.BaseURL = "http://www.infragistics.com" ' This formatted text value that uses relative url for the image. Me.ultraFormattedLinkLabel1.Value = "Logo: <img src=""images/infragistics_logo.gif""/>" End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.Misc; using Infragistics.Win.FormattedLinkLabel; using System.Diagnostics; private void button1_Click(object sender, System.EventArgs e) { // You can also specify a default base url for all instances of // UltraFormattedLinkLabel, UltraFormattedTextEditor and FormattedLinkEditor // in the entire application by setting the static BaseURLDefault property // of the FormattedLinkEditor. FormattedLinkEditor.BaseURLDefault = "http://www.infragistics.com"; // You can also set it on a specific control. this.ultraFormattedLinkLabel1.BaseURL = "http://www.infragistics.com"; // This formatted text value that uses relative url for the image. this.ultraFormattedLinkLabel1.Value = @"Logo: <img src=""images/infragistics_logo.gif""/>"; }