Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

StringGrid ekvivalent u C#

[es] :: .NET :: .NET Desktop razvoj :: StringGrid ekvivalent u C#

[ Pregleda: 2149 | Odgovora: 2 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

Kanidza
Zenica

Član broj: 73307
Poruke: 2
*.pppoe1119.bih.net.ba.



Profil

icon StringGrid ekvivalent u C#05.11.2005. u 17:06 - pre 224 meseci
Koja komponenta u C#-u (#development ili MS C#) je ekvivalent komponenti StringGrid iz C++ Buildera?
 
Odgovor na temu

Fedya
Fedor Hajdu
Solution Architect
Emaratech
Dubai, UAE

Član broj: 28246
Poruke: 790
*.stcable.co.yu.

Jabber: fedya@elitesecurity.org
Sajt: devtechgroup.com


+34 Profil

icon Re: StringGrid ekvivalent u C#08.11.2005. u 20:45 - pre 224 meseci
Za one koji ne znaju C++ Builder (kao ja npr.) objasni koja je namena tog StringGrid-a.
Every hamster has his day.
 
Odgovor na temu

Kanidza
Zenica

Član broj: 73307
Poruke: 2
*.dlp109.bih.net.ba.



Profil

icon Re: StringGrid ekvivalent u C#09.11.2005. u 07:39 - pre 224 meseci
Ok. Taj StringGrid služi za prikazivanje string podataka u kolone i redove. Ista komponenta postoji i u Delphiju i isto se zove. Koristi se na sledeći način:

Code:
procedure TForm1.Button1Click(Sender: TObject);
var
  I, J, K : Integer;
begin
  K := 0;
  with StringGrid1 do
    for I := 0 to ColCount - 1 do
      for J:= 0 to RowCount - 1 do
        begin
          K := K + 1;
          Cells[I,J] := IntToStr(K);
        end;
end;


E sad, pošto sam ja totalni početnik u C#, te zbog problema za MS Visual S. 2003 koristim SharpDevelop u kojem ne mogu da pronađem komponentu sličnu komponenti StringGrid.



 
Odgovor na temu

[es] :: .NET :: .NET Desktop razvoj :: StringGrid ekvivalent u C#

[ Pregleda: 2149 | Odgovora: 2 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.