`private void btnStartServerIns_Click(object sender, RoutedEventArgs e)
{
try
{
ServiceController sc = new ServiceController("RMExSoftphoneService");
if ((sc.Status.Equals(ServiceControllerStatus.Stopped)))
{
sc.Start();
LogDebug("Starting the RMExSoftphoneServer");
}
LogDebug("Started the RMExSoftphoneServer");
}
catch (Exception Ex)
{
LogDebug(Ex.Message);
}
}`
У меня есть проект, который запускает и останавливает службу.В большинстве случаев это быстро, но иногда это не так.так что я хочу показать пользователю, что эта функция выполняется