23 lines
648 B
C#
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));
|
|
}
|
|
}
|
|
} |