mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 00:46:12 +02:00
- Fix some spelling mistakes
This commit is contained in:
@@ -57,9 +57,9 @@
|
||||
<Style TargetType="TextBlock" />
|
||||
</materialDesign:TextFieldAssist.CharacterCounterStyle>
|
||||
</TextBox>
|
||||
<ComboBox x:Name="spectrumPlugineComboBox" ItemsSource="{DynamicResource musicVisualizerOptionsComboboxItems}" HorizontalAlignment="Left" VerticalAlignment="Top" Width="120" SelectionChanged="SpectrumPlugineComboBox_SelectionChanged" />
|
||||
<CheckBox x:Name="mirrorPlugineCheckBox" Content="{DynamicResource mirrorPlugine}" Click="MirrorPlugineCheckBox_Click" Style="{StaticResource MaterialDesignDarkCheckBox}" />
|
||||
<CheckBox x:Name="linePlugineCheckBox" Content="{DynamicResource linePlugine}" Click="LinePlugineCheckBox_Click" Style="{StaticResource MaterialDesignDarkCheckBox}" />
|
||||
<ComboBox x:Name="spectrumModeComboBox" ItemsSource="{DynamicResource musicVisualizerOptionsComboboxItems}" HorizontalAlignment="Left" VerticalAlignment="Top" Width="120" SelectionChanged="SpectrumModeComboBox_SelectionChanged" />
|
||||
<CheckBox x:Name="mirrorModeCheckBox" Content="{DynamicResource mirrorMode}" Click="MirrorModeCheckBox_Click" Style="{StaticResource MaterialDesignDarkCheckBox}" />
|
||||
<CheckBox x:Name="lineModeCheckBox" Content="{DynamicResource lineMode}" Click="LineModeCheckBox_Click" Style="{StaticResource MaterialDesignDarkCheckBox}" />
|
||||
<Label Content="{DynamicResource amplifier}" HorizontalAlignment="Left" VerticalAlignment="Top" Padding="0,1" />
|
||||
<Slider x:Name="amplifierLevelSlider" Margin="-2,0,10,0" HorizontalAlignment="Stretch" VerticalAlignment="Top" ValueChanged="AmplifierLevelSlider_ValueChanged" Maximum="50" Minimum="-50" SmallChange="1" LargeChange="5" Foreground="Gray" />
|
||||
<Label x:Name="amplifierLevelLabel" Content="Label" HorizontalAlignment="Left" VerticalAlignment="Top" Padding="0,1" />
|
||||
|
||||
@@ -268,7 +268,7 @@ namespace DesktopMagic
|
||||
|
||||
window.ShowInTaskbar = false;
|
||||
window.Show();
|
||||
window.ContentRendered += PluginWindow_ContentRendered;
|
||||
window.ContentRendered += DisplayWindow_ContentRendered;
|
||||
window.Closing += DisplayWindow_Closing;
|
||||
Windows.Add(window);
|
||||
WindowNames.Add(window.Title);
|
||||
@@ -289,7 +289,7 @@ namespace DesktopMagic
|
||||
SaveLayout();
|
||||
}
|
||||
|
||||
private void PluginWindow_ContentRendered(object sender, EventArgs e)
|
||||
private void DisplayWindow_ContentRendered(object sender, EventArgs e)
|
||||
{
|
||||
WindowPos.SendWpfWindowBack(sender as Window);
|
||||
WindowPos.SendWpfWindowBack(sender as Window);
|
||||
@@ -345,17 +345,17 @@ namespace DesktopMagic
|
||||
SaveLayout();
|
||||
}
|
||||
|
||||
private void MirrorPlugineCheckBox_Click(object sender, RoutedEventArgs e)
|
||||
private void MirrorModeCheckBox_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
MirrorMode = (bool)mirrorPlugineCheckBox.IsChecked;
|
||||
key.SetValue("MirrorPlugine", mirrorPlugineCheckBox.IsChecked.ToString());
|
||||
MirrorMode = (bool)mirrorModeCheckBox.IsChecked;
|
||||
key.SetValue("MirrorMode", mirrorModeCheckBox.IsChecked.ToString());
|
||||
SaveLayout();
|
||||
}
|
||||
|
||||
private void LinePlugineCheckBox_Click(object sender, RoutedEventArgs e)
|
||||
private void LineModeCheckBox_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
LineMode = (bool)linePlugineCheckBox.IsChecked;
|
||||
key.SetValue("LinePlugine", linePlugineCheckBox.IsChecked.ToString());
|
||||
LineMode = (bool)lineModeCheckBox.IsChecked;
|
||||
key.SetValue("LineMode", lineModeCheckBox.IsChecked.ToString());
|
||||
SaveLayout();
|
||||
}
|
||||
|
||||
@@ -422,12 +422,12 @@ namespace DesktopMagic
|
||||
SaveLayout();
|
||||
}
|
||||
|
||||
private void SpectrumPlugineComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||
private void SpectrumModeComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
SpectrumMode = spectrumPlugineComboBox.SelectedIndex;
|
||||
key.SetValue("SpectrumPlugine", spectrumPlugineComboBox.SelectedIndex);
|
||||
SpectrumMode = spectrumModeComboBox.SelectedIndex;
|
||||
key.SetValue("SpectrumMode", spectrumModeComboBox.SelectedIndex);
|
||||
|
||||
mirrorPlugineCheckBox.IsEnabled = spectrumPlugineComboBox.SelectedIndex != 1;
|
||||
mirrorModeCheckBox.IsEnabled = spectrumModeComboBox.SelectedIndex != 1;
|
||||
SaveLayout();
|
||||
}
|
||||
|
||||
@@ -866,18 +866,18 @@ namespace DesktopMagic
|
||||
private void LoadLayout(bool minimize = true)
|
||||
{
|
||||
GlobalFont = key.GetValue("Font", "Segoe UI").ToString();
|
||||
spectrumPlugineComboBox.SelectedIndex = int.Parse(key.GetValue("SpectrumPlugine", "0").ToString());
|
||||
spectrumModeComboBox.SelectedIndex = int.Parse(key.GetValue("SpectrumMode", "0").ToString());
|
||||
amplifierLevelSlider.Value = int.Parse(key.GetValue("AmplifierLevel", "0").ToString());
|
||||
mirrorPlugineCheckBox.IsChecked = bool.Parse(key.GetValue("MirrorPlugine", "false").ToString());
|
||||
linePlugineCheckBox.IsChecked = bool.Parse(key.GetValue("LinePlugine", "false").ToString());
|
||||
mirrorModeCheckBox.IsChecked = bool.Parse(key.GetValue("MirrorMode", "false").ToString());
|
||||
lineModeCheckBox.IsChecked = bool.Parse(key.GetValue("LineMode", "false").ToString());
|
||||
musicVisualizerColorTextBox.Text = key.GetValue("MusicVisualizerColor", "").ToString();
|
||||
colorHexTextBox.Text = key.GetValue("Color", "#FFFFFF").ToString();
|
||||
blockWindowsClosing = false;
|
||||
|
||||
MusicVisualizerColorTextBox_TextChanged(null, null);
|
||||
MirrorPlugineCheckBox_Click(null, null);
|
||||
LinePlugineCheckBox_Click(null, null);
|
||||
SpectrumPlugineComboBox_SelectionChanged(null, null);
|
||||
MirrorModeCheckBox_Click(null, null);
|
||||
LineModeCheckBox_Click(null, null);
|
||||
SpectrumModeComboBox_SelectionChanged(null, null);
|
||||
AmplifierLevelSlider_ValueChanged(null, null);
|
||||
|
||||
foreach (Window window in Windows)
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
xmlns:col="clr-namespace:System.Collections;assembly=mscorlib"
|
||||
xmlns:system="clr-namespace:System;assembly=mscorlib">
|
||||
|
||||
<system:String x:Key="linePlugine">Linie</system:String>
|
||||
<system:String x:Key="mirrorPlugine">Spiegeln</system:String>
|
||||
<system:String x:Key="lineMode">Linie</system:String>
|
||||
<system:String x:Key="mirrorMode">Spiegeln</system:String>
|
||||
<system:String x:Key="updatePlugins">Plugins Neu Laden</system:String>
|
||||
<system:String x:Key="openPluginsFolder">Plugins Ordner Öffnen</system:String>
|
||||
<system:String x:Key="downloadPlugins">Plugins Herunterladen</system:String>
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
xmlns:col="clr-namespace:System.Collections;assembly=mscorlib"
|
||||
xmlns:system="clr-namespace:System;assembly=mscorlib">
|
||||
|
||||
<system:String x:Key="linePlugine">Line</system:String>
|
||||
<system:String x:Key="mirrorPlugine">Mirror</system:String>
|
||||
<system:String x:Key="lineMode">Line</system:String>
|
||||
<system:String x:Key="mirrorMode">Mirror</system:String>
|
||||
<system:String x:Key="updatePlugins">Reload Plugins</system:String>
|
||||
<system:String x:Key="openPluginsFolder">Open Plugins Folder</system:String>
|
||||
<system:String x:Key="downloadPlugins">Download Plugins</system:String>
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
- [Main()](#M-DesktopMagicPluginAPI-Plugin-Main 'DesktopMagicPluginAPI.Plugin.Main')
|
||||
- [OnMouseClick(position,mouseButton)](#M-DesktopMagicPluginAPI-Plugin-OnMouseClick-System-Drawing-Point,DesktopMagicPluginAPI-Inputs-MouseButton- 'DesktopMagicPluginAPI.Plugin.OnMouseClick(System.Drawing.Point,DesktopMagicPluginAPI.Inputs.MouseButton)')
|
||||
- [OnMouseMove(position)](#M-DesktopMagicPluginAPI-Plugin-OnMouseMove-System-Drawing-Point- 'DesktopMagicPluginAPI.Plugin.OnMouseMove(System.Drawing.Point)')
|
||||
- [OnMouseWheel(position,Delta)](#M-DesktopMagicPluginAPI-Plugin-OnMouseWheel-System-Drawing-Point,System-Int32- 'DesktopMagicPluginAPI.Plugin.OnMouseWheel(System.Drawing.Point,System.Int32)')
|
||||
- [OnMouseWheel(position,delta)](#M-DesktopMagicPluginAPI-Plugin-OnMouseWheel-System-Drawing-Point,System-Int32- 'DesktopMagicPluginAPI.Plugin.OnMouseWheel(System.Drawing.Point,System.Int32)')
|
||||
- [Start()](#M-DesktopMagicPluginAPI-Plugin-Start 'DesktopMagicPluginAPI.Plugin.Start')
|
||||
- [RenderQuality](#T-DesktopMagicPluginAPI-Drawing-RenderQuality 'DesktopMagicPluginAPI.Drawing.RenderQuality')
|
||||
- [High](#F-DesktopMagicPluginAPI-Drawing-RenderQuality-High 'DesktopMagicPluginAPI.Drawing.RenderQuality.High')
|
||||
@@ -570,7 +570,7 @@ Occurs when the mouse pointer is moved over the control.
|
||||
| position | [System.Drawing.Point](http://msdn.microsoft.com/query/dev14.query?appId=Dev14IDEF1&l=EN-US&k=k:System.Drawing.Point 'System.Drawing.Point') | The x- and y-coordinates of the mouse pointer position relative to the plugin window. |
|
||||
|
||||
<a name='M-DesktopMagicPluginAPI-Plugin-OnMouseWheel-System-Drawing-Point,System-Int32-'></a>
|
||||
### OnMouseWheel(position,Delta) `method`
|
||||
### OnMouseWheel(position,delta) `method`
|
||||
|
||||
##### Summary
|
||||
|
||||
@@ -581,7 +581,7 @@ Occurs when the user rotates the mouse wheel while the mouse pointer is over thi
|
||||
| Name | Type | Description |
|
||||
| ---- | ---- | ----------- |
|
||||
| position | [System.Drawing.Point](http://msdn.microsoft.com/query/dev14.query?appId=Dev14IDEF1&l=EN-US&k=k:System.Drawing.Point 'System.Drawing.Point') | The x- and y-coordinates of the mouse pointer position relative to the plugin window. |
|
||||
| Delta | [System.Int32](http://msdn.microsoft.com/query/dev14.query?appId=Dev14IDEF1&l=EN-US&k=k:System.Int32 'System.Int32') | A value that indicates the amount that the mouse wheel has changed. |
|
||||
| delta | [System.Int32](http://msdn.microsoft.com/query/dev14.query?appId=Dev14IDEF1&l=EN-US&k=k:System.Int32 'System.Int32') | A value that indicates the amount that the mouse wheel has changed. |
|
||||
|
||||
<a name='M-DesktopMagicPluginAPI-Plugin-Start'></a>
|
||||
### Start() `method`
|
||||
|
||||
@@ -365,7 +365,7 @@
|
||||
Occurs when the user rotates the mouse wheel while the mouse pointer is over this element.
|
||||
</summary>
|
||||
<param name="position">The x- and y-coordinates of the mouse pointer position relative to the plugin window.</param>
|
||||
<param name="Delta">A value that indicates the amount that the mouse wheel has changed.</param>
|
||||
<param name="delta">A value that indicates the amount that the mouse wheel has changed.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
|
||||
@@ -76,8 +76,8 @@ namespace DesktopMagicPluginAPI
|
||||
/// Occurs when the user rotates the mouse wheel while the mouse pointer is over this element.
|
||||
/// </summary>
|
||||
/// <param name="position">The x- and y-coordinates of the mouse pointer position relative to the plugin window.</param>
|
||||
/// <param name="Delta">A value that indicates the amount that the mouse wheel has changed.</param>
|
||||
public virtual void OnMouseWheel(Point position, int Delta)
|
||||
/// <param name="delta">A value that indicates the amount that the mouse wheel has changed.</param>
|
||||
public virtual void OnMouseWheel(Point position, int delta)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user