mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 19:14:20 +01:00
7d7d5d7391
Extended range needed for touchpad swipes actions to register UI adjustments in profile settings, such as a color box for flashing color, alignment adjustments, and the Sixaxis reading dot staying in bounds of the box Recording a macro for special actions now open up in a new window, allowing for ctrl+tab to be used When controller's latency passes 10ms, the log will show and the controller will flash red until the latency is under 10ms Hovering over the mac address shows the latency of said controller, if it's connected via bluetooth Option to choose when at low battery for the light to flash or pulse Much cleaner/neater hotkeys/about window Option to download language packs if your PC is not set to an english language Finished Italian Translations (Thanks again Giulio) Finished German Translations (Thanks Ammonjak) Updated Italian & Russian Translations Reorganized the the code so all cs files are under the same project
29 lines
1.2 KiB
C#
29 lines
1.2 KiB
C#
namespace DS4Windows.Properties {
|
|
|
|
|
|
// This class allows you to handle specific events on the settings class:
|
|
// The SettingChanging event is raised before a setting's value is changed.
|
|
// The PropertyChanged event is raised after a setting's value is changed.
|
|
// The SettingsLoaded event is raised after the setting values are loaded.
|
|
// The SettingsSaving event is raised before the setting values are saved.
|
|
internal sealed partial class Settings {
|
|
|
|
public Settings() {
|
|
// // To add event handlers for saving and changing settings, uncomment the lines below:
|
|
//
|
|
// this.SettingChanging += this.SettingChangingEventHandler;
|
|
//
|
|
// this.SettingsSaving += this.SettingsSavingEventHandler;
|
|
//
|
|
}
|
|
|
|
private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) {
|
|
// Add code to handle the SettingChangingEvent event here.
|
|
}
|
|
|
|
private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
|
|
// Add code to handle the SettingsSaving event here.
|
|
}
|
|
}
|
|
}
|