Answer the question
In order to leave comments, you need to log in
How to make social media link in WPF xaml c#?
I can't add links to social networks, it constantly gives me an error.
I added the button, but with the link of the problem.
I will be glad to help, thanks in advance for the answer.
PS: if possible, with an example.
<Button Name="Discord" Height="60" Width="60" Click="Discord_Click">
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
</EventTrigger>
</Button.Triggers>
</Button>
Answer the question
In order to leave comments, you need to log in
If you write without using MVVM and you need to open a link in a browser, then the solution is simple, through the button click event handler.
XML form code:
<Window x:Class="WpfApp1.MainWindow"
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"
xmlns:local="clr-namespace:WpfApp1"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Button x:Name="WButton" Content="GO TO HABR!!" Width="200" Height="50" Click="WButton_Click"/>
</Grid>
</Window>
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 WpfApp1
{
/// <summary>
/// Логика взаимодействия для MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
//Обработчик нажатия на кнопку
private void WButton_Click(object sender, RoutedEventArgs e)
{
//Открытие ссылки при нажатии на кнопку
Process.Start(new ProcessStartInfo("URL") { UseShellExecute = true });
}
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question