Skip to content

Commit

Permalink
alterações nas cores do grid e correção de bug
Browse files Browse the repository at this point in the history
  • Loading branch information
adolfoIN committed Jul 20, 2021
1 parent 428e3c1 commit 0048aae
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 50 deletions.
Binary file modified .vs/SoundCloud/v16/.suo
Binary file not shown.
101 changes: 54 additions & 47 deletions SoundCloud/FrmMain.Designer.cs

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

5 changes: 3 additions & 2 deletions SoundCloud/FrmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public FrmMain()
{
InitializeComponent();
grid.Columns[0].DefaultCellStyle.NullValue = null;
grid.Rows.Clear();
}

private void btnMin_Click(object sender, EventArgs e)
Expand Down Expand Up @@ -137,13 +138,13 @@ private void btnPlayPause_Click(object sender, EventArgs e)
{
if (wavePlayer.PlaybackState == PlaybackState.Playing)
{
wavePlayer.Pause();
btnPlayPause.Image = iconPlay.Image;
wavePlayer.Pause();
}
else
{
wavePlayer.Play();
btnPlayPause.Image = iconPause.Image;
wavePlayer.Play();
}

}
Expand Down
10 changes: 9 additions & 1 deletion SoundCloud/FrmMain.resx
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,15 @@
<metadata name="Column1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="Column1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAKBJREFUSEvt
klsKwjAQRbOR+t0l5QHZoFXclyjULsDOwBWGMFq45qfQA+fvchJIwkFXSinvX2LG40WtmPF4UStmPF7U
ihmPF7VixtMt9I3jgE32dUCt9SSxi3iHV42rmPAg/vwEWzHjkYje3I2rmPFI5NVGrZjxSGRpo8YZMx6J
3Jqo9YwZT0pplJD3yI8Y44DZf5hvqu8x55ynbvEdEcIKN4Xg+EpUznIAAAAASUVORK5CYII=
</value>
</data>
<metadata name="Column2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
Expand All @@ -138,7 +147,6 @@
<metadata name="PlayPause.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>393, 17</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="bunifuSeparator1.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAASwAAAARCAYAAABn7pGyAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
Expand Down
Binary file modified SoundCloud/bin/Debug/SoundCloud.exe
Binary file not shown.
Binary file modified SoundCloud/bin/Debug/SoundCloud.pdb
Binary file not shown.
Binary file modified SoundCloud/obj/Debug/DesignTimeResolveAssemblyReferences.cache
Binary file not shown.
Binary file modified SoundCloud/obj/Debug/SoundCloud.FrmMain.resources
Binary file not shown.
Binary file modified SoundCloud/obj/Debug/SoundCloud.csproj.GenerateResource.cache
Binary file not shown.
Binary file modified SoundCloud/obj/Debug/SoundCloud.exe
Binary file not shown.
Binary file modified SoundCloud/obj/Debug/SoundCloud.pdb
Binary file not shown.

0 comments on commit 0048aae

Please sign in to comment.