Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fix tree #67

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Feature/fix tree #67

wants to merge 5 commits into from

Conversation

leoKagohara-Stark
Copy link
Contributor

No description provided.


private void label4_Click(object sender, EventArgs e)
{

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Algum motivo para esse botão não ter ação?

using StarkBankExcel.Forms;
using System.Windows.Forms;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A posição anterior desse import fazia mais sentido, não?
Eu deixaria na linha 5

@@ -33,6 +33,7 @@ private void InternalStartup()
this.button5.Click += new System.EventHandler(this.button5_Click);
this.Startup += new System.EventHandler(this.Planilha15_Startup);
this.Shutdown += new System.EventHandler(this.Planilha15_Shutdown);

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dei uma olhada em outros arquivos e parece que seguimos o padrão de não ter essa quebra de linha antes de fechar as chaves

@@ -154,7 +154,7 @@ public sealed partial class GetStatement : Microsoft.Office.Tools.Excel.Workshee
this.button1.BackColor = System.Drawing.SystemColors.Control;
this.button1.ForeColor = System.Drawing.SystemColors.ControlText;
this.button1.Name = "button1";
this.button1.Text = "Baixar Extrato";
this.button1.Text = "Extrato";
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Esse botão faz o GET do extrato ou faz o download do extrato para a maquina do cliente?
Se a função for download, acredito que faça sentido manter o texto "baixar"

using Newtonsoft.Json.Linq;
using StarkBankExcel.Forms;
using System.Windows.Forms;
using StarkBankExcel.Resources;
using System.Collections.Generic;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Faz sentido deixar os imports de system todos juntos no começo do arquivo?
Ex:
using System.IO;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
using System.Collections.Generic;

@@ -98,6 +98,7 @@ private void Help_Click(object sender, EventArgs e)
{
ViewHelpForm viewHelpForm = new ViewHelpForm();
viewHelpForm.ShowDialog();

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Podemos tirar esse espaço antes de fechar a chave?

@@ -110,6 +111,11 @@ private void button11_Click(object sender, EventArgs e)
Globals.Planilha11.Activate();
}

private void button3_Click(object sender, EventArgs e)
{

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Esse botão sem ação faz sentido?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants