我是WPF C#的初学者,正在尝试为项目创建UI。
我想在WPF C#应用程序中现有的选项卡中显示本地网络端口(例如IP +“:8888 /”)中可用的数据(Chronograf查询结果)。
我试图创建一个Web浏览器并提供了ip,但是它显示了无效的uri方案。 我也尝试直接使用提供链接 System.Diagnostics.Process.Start(PCID +“:8888 /”);但它会在PC上寻找打开链接的应用程序
//xaml code:
<Button Click="Getgraph" Content="GET CHARTS" Foreground="Black" HorizontalAlignment="Left" Margin="10,10,0,458"></Button>
<WebBrowser Name="Charts"/>
//Code behind (xaml.cs)
private void Getgraph(object sender, RoutedEventArgs e)
{
Charts.Source = new Uri(PCID + ":8888/");
//System.Diagnostics.Process.Start(PCID + ":8888/");
}