10
WPF- এ হাইপারলিঙ্ক ব্যবহারের উদাহরণ using
আমি বেশ কয়েকটি পরামর্শ দেখেছি, আপনি Hyperlinkনিয়ন্ত্রণের মাধ্যমে ডাব্লুপিএফ অ্যাপ্লিকেশনটিতে হাইপারলিঙ্ক যুক্ত করতে পারেন । আমি এখানে আমার কোডটিতে এটি ব্যবহার করার চেষ্টা করছি: <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="BookmarkWizV2.InfoPanels.Windows.UrlProperties" Title="UrlProperties" Height="754" Width="576"> <Grid> <Grid.RowDefinitions> <RowDefinition></RowDefinition> <RowDefinition Height="40"/> </Grid.RowDefinitions> <Grid> <ScrollViewer ScrollViewer.VerticalScrollBarVisibility="Auto" Grid.RowSpan="2"> <StackPanel > <DockPanel LastChildFill="True" Margin="0,5"> <TextBlock …