Skip to content

Commit

Permalink
Merge pull request #461 from Krypton-Suite/404-feature-request-update…
Browse files Browse the repository at this point in the history
…-scottplot-to-v5

* 404 feature request update scottplot to v5

- Not reviewed.
  • Loading branch information
Smurf-IV authored Feb 4, 2024
2 parents 13677c9 + 3e4c48c commit 9fd7ea8
Show file tree
Hide file tree
Showing 717 changed files with 27,050 additions and 38,750 deletions.
1 change: 1 addition & 0 deletions Documents/Help/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
=======

## 2024-11-xx - Build 2411 - November 2024
* Implement [#404](https://github.com/Krypton-Suite/Extended-Toolkit/issues/404), Update 'ScottPlot' to v5
* `KryptonMessageBoxExtended` now supports RTL reading
* `Krypton.Toolkit.Suite.Extended.Toast` is now deprecated, as it has now been asorbed into the standard toolkit
* `KryptonFormExtended` - `AllowFormIntegrate` property has now been removed to fall in line with the standard toolkit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<Choose>
<When Condition="'$(Configuration)' == 'Nightly'">
<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Nightly" Version="90.24.1.17-alpha" />
<PackageReference Include="Krypton.Toolkit.Nightly" Version="90.24.2.32-alpha" />
</ItemGroup>
</When>

Expand Down
4 changes: 2 additions & 2 deletions Source/Krypton Toolkit/Examples/Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
<Choose>
<When Condition="'$(SolutionName.Endswith(`NuGet`))'">
<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Nightly" Version="90.24.1.17-alpha" />
<PackageReference Include="Krypton.Ribbon.Nightly" Version="90.24.1.17-alpha" />
<PackageReference Include="Krypton.Toolkit.Nightly" Version="90.24.1.29-alpha" />
<PackageReference Include="Krypton.Ribbon.Nightly" Version="90.24.1.29-alpha" />
</ItemGroup>
</When>
<Otherwise>
Expand Down
24 changes: 12 additions & 12 deletions Source/Krypton Toolkit/Examples/MainWindow.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 5 additions & 7 deletions Source/Krypton Toolkit/Examples/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,6 @@ private void kbtnOutlookGrid_Click(object sender, EventArgs e)
outlookGridExample.Show();
}

private void kbtnNotificationExample_Click(object sender, EventArgs e)
{
NotificationExample notificationExample = new NotificationExample();

notificationExample.Show();
}

private void kbtnFloating_Click(object sender, EventArgs e)
{
FloatingMenuToolbarExampleMain floating = new FloatingMenuToolbarExampleMain();
Expand Down Expand Up @@ -160,5 +153,10 @@ private void kbtnCheckBoxComboBoxExample_Click(object sender, EventArgs e)

example.Show();
}

private void kbtnNotificationExample_Click(object sender, EventArgs e)
{

}
}
}
88 changes: 44 additions & 44 deletions Source/Krypton Toolkit/Examples/MessageBoxExample.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Source/Krypton Toolkit/Examples/MessageBoxExample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private void kryptonButton1_Click(object sender, EventArgs e)

private void kbtnShow_Click(object sender, EventArgs e)
{
KryptonMessageBoxExtended.Show(_message, _caption, _button, _icon, _defaultButton, _options);
//KryptonMessageBoxExtended.Show(this, _message, _caption, _button, _icon, _defaultButton, _options);

//DialogResult result = KryptonMessageBoxExtended.Show(_message, _caption, _button, _icon, _defaultButton, _options);

Expand Down
Loading

0 comments on commit 9fd7ea8

Please sign in to comment.