Files
BeWoPlaner/BeWo/View/Detail/OwnChatSettingsView.xaml.cs
2020-11-10 02:25:15 +01:00

23 lines
648 B
C#

using System.Collections.Generic;
using System.Windows;
using BeWo.ServiceProxy;
using BeWo.ViewModel;
using BS.Shared.DataContracts;
using BS.Shared.Extensions;
namespace BeWo.View.Detail
{
public partial class OwnChatSettingsView : BeWoView
{
public OwnChatSettingsView()
{
this.InitializeComponent();
}
private void button_showSettings_Click(object sender, RoutedEventArgs e)
{
var url = ServiceFacade.DoOperationsServiceSync(s => s.GetOwnChatSettingsUrl());
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(url));
}
}
}