Skip to content

Commit

Permalink
ajusta wave e adiciona tela de erro de referencia de objeto
Browse files Browse the repository at this point in the history
  • Loading branch information
adolfoIN committed Jul 18, 2021
1 parent e30a984 commit 428e3c1
Show file tree
Hide file tree
Showing 23 changed files with 11,269 additions and 811 deletions.
Binary file modified .vs/SoundCloud/v16/.suo
Binary file not shown.
172 changes: 172 additions & 0 deletions SoundCloud/Error/Base.Designer.cs

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

28 changes: 28 additions & 0 deletions SoundCloud/Error/Base.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace SoundCloud.Error
{
public partial class Base : Form
{
public Base(String mensagem)
{
InitializeComponent();
this.ControlBox = false;
lblErro.Text = mensagem;

}

private void btnOk_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
Loading

0 comments on commit 428e3c1

Please sign in to comment.