mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 09:49:16 +01:00
8d9f69db44
Complete rehaul of the profile settings, bigger workspace to edit controls, and all the settings are on the side now Added option to change the lightbar color, regardless of the profile's lightbar setting (useful for using one profile on the same controller). to change click the colored button beside edit in the main tab Can now set the Gyro as an 1:1 absolute mouse, in this mode the mouse now moves as the controller is moved Removed the experimental exclusive connection button if on the newest Windows 10 build (1511/TH2) Finally updated all the translations and added some new ones (such as Chinese and Polish, the translations sheets have been merged to one so it's easier for me to update
37 lines
815 B
C#
37 lines
815 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DS4Windows
|
|
{
|
|
public partial class Alreadyrunning : Form
|
|
{
|
|
Stopwatch sw;
|
|
|
|
public Alreadyrunning()
|
|
{
|
|
InitializeComponent();
|
|
this.WindowState = FormWindowState.Minimized;
|
|
Hide();
|
|
Timer t = new Timer();
|
|
t.Start();
|
|
t.Tick += t_Tick;
|
|
sw = new Stopwatch();
|
|
sw.Start();
|
|
}
|
|
|
|
void t_Tick(object sender, EventArgs e)
|
|
{
|
|
if (sw.ElapsedMilliseconds >= 10)
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|