Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
See README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
PWagner1 committed Jun 15, 2018
1 parent 87b49bc commit b9a292b
Show file tree
Hide file tree
Showing 4 changed files with 258 additions and 262 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@

=======

## 2018-06-15 Palette Example Application
* Now you can export your custom palette creation in the `Krypton Palette Example` application.

=======

## 2018-06-11 Version 620
* Build 620 (build date Monday 11th June 2018) is now obtainable through the `releases` tab.
* Fixed references that blocked demo applications from launching.
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,20 @@ private void buttonCustom_Click(object sender, EventArgs e)
{
kryptonManager.GlobalPalette = kryptonPaletteCustom;
propertyGrid.SelectedObject = kryptonPaletteCustom;

btnExport.Enabled = true;
}

private void buttonClose_Click(object sender, EventArgs e)
{
Close();
}

private void btnExport_Click(object sender, EventArgs e)
{
kryptonPaletteCustom.Export();

btnExport.Enabled = false;
}
}
}
Loading

0 comments on commit b9a292b

Please sign in to comment.