Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
khi mình debug nhấn vào link thì nó hiện ra lỗi System.ComponentModel.Win32Exception: 'The system cannot find the file specified.'
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace TextBlock_Inlines
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.Loaded += MainWindow_Loaded;
}
void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
//var a = (Hyperlink)txbl1.Inlines.ElementAt(0);
txbl3.Inlines.Add(new Run("www.HowKteam.com") { FontSize = 30 });
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
Process.Start(e.Uri.ToString());
}
}
}
bạn thiếu http:// hoặc https:// nha
Bạn bỏ cái đoạn code
Thay bằng đoạn code bên dưới thử.
đây là link ảnh
https://drive.google.com/file/d/16XuYUEA3o3V30z47LvRTar-sowZ8DXmu/view?usp=sharing