Properties Linklabel Windownsforms

Asked

Viewed 43 times

0

You can use the property LinkLabel to open a kind of Modal to view history of a particular item that are stored in table ?

Example: inserir a descrição da imagem aqui

And in that Form would bring that info that is stocked from the table VincoRetornoSefaz inserir a descrição da imagem aqui

When you click on the Word Rejected instead of opening a standard link, open a new one form on grounds of rejection.

  • 1

    it is possible yes, lack the context of what to do exactly, but, one could put a minimal example in your question to have a targeted answer to your question.

  • @Virgilionovic edited.

1 answer

2

You must schedule the event click the label. When adding it, double click on it that the visual studio already creates and registers the event. So just create the form, feel it and use.

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
            {
                Form2 newform = new Form2();
                newform.ShowDialog();
            }

Browser other questions tagged

You are not signed in. Login or sign up in order to post.