Skip to content

Commit

Permalink
Merge pull request #433 from Krypton-Suite/430-feature-request-use-kr…
Browse files Browse the repository at this point in the history
…yptonprogressbar-throughout-the-toolkit

430 feature request use kryptonprogressbar throughout the toolkit
  • Loading branch information
Smurf-IV committed Sep 24, 2023
2 parents c908faf + 9429034 commit 0b6756c
Show file tree
Hide file tree
Showing 138 changed files with 2,385 additions and 7,637 deletions.
4 changes: 2 additions & 2 deletions Source/Krypton Toolkit/Examples/Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Nightly" Version="80.23.8.234-alpha" />
<PackageReference Include="Krypton.Ribbon.Nightly" Version="80.23.8.234-alpha" />
<PackageReference Include="Krypton.Toolkit.Nightly" Version="80.23.9.261-alpha" />
<PackageReference Include="Krypton.Ribbon.Nightly" Version="80.23.9.261-alpha" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Nightly" Version="80.23.8.234-alpha" />
<PackageReference Include="Krypton.Toolkit.Nightly" Version="80.23.9.261-alpha" />
</ItemGroup>
</When>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Nightly" Version="80.23.8.234-alpha" />
<PackageReference Include="Krypton.Toolkit.Nightly" Version="80.23.9.261-alpha" />
</ItemGroup>
</When>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Krypton.Toolkit.Nightly" Version="80.23.8.234-alpha" />
<PackageReference Include="Krypton.Toolkit.Nightly" Version="80.23.9.261-alpha" />
</ItemGroup>
</When>

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 @@ -583,11 +583,9 @@ private void Calculation_ProgressChanged(object sender, ProgressChangedEventArgs
TaskbarManager.Instance.SetProgressValue(e.ProgressPercentage, null);
}

tspbCalculationProgress.Visible = true;
kpbtsiCalculationProgress.Visible = true;

tspbCalculationProgress.Value = e.ProgressPercentage;

tslCalculationProgress.Text = $@"{e.ProgressPercentage}%";
kpbtsiCalculationProgress.Value = e.ProgressPercentage;

kwlHashOutput.Text = @"Please wait ...";

Expand All @@ -603,11 +601,9 @@ private void Calculation_RunWorkerCompleted(object sender, RunWorkerCompletedEve
TaskbarManager.Instance.SetProgressValue(0, null);
}

tspbCalculationProgress.Visible = false;

tspbCalculationProgress.Value = 0;
kpbtsiCalculationProgress.Visible = false;

tslCalculationProgress.Text = string.Empty;
kpbtsiCalculationProgress.Value = 0;

kwlHashOutput.Text = $@"{e.Result}";

Expand Down
Loading

0 comments on commit 0b6756c

Please sign in to comment.