C# ve Grafik programlama

Başlatan sigmoid, 03 Haziran 2010, 22:37:42


muhittin_kaplan

öylesi daha iyi olur. bir ara buluşur fırat ıda alır gelirim :).
Ayrıca teşekkür ederim.

orhanc

#32
ne demek abi :) 50-60 gb programlama kitabı var disk getirirseniz komple atabilirim :D

http://www.torrenthound.com/hash/9f9b1a1930f0772229d039ec327ce95c1c0b1a57/torrent-info/Over-1100-General-Computer-Ebooks
i'm doing nothing... Giddy Up  http://www.drorhan.com

muhittin_kaplan

Denk Gelecek Ya Bende GPS den aldığım İrtifa Bilgileri KALMAN a tabi tutmak için VB de fonsiyon yazıp Chart ta göstermeye çalışıyordum.

orhanc

neden VB kullanıyorsun? c#kullan boşver vb yi
i'm doing nothing... Giddy Up  http://www.drorhan.com

muhittin_kaplan

elim ona alışkın :)
alışmış kudurmuş meselesi.

orhanc

Ben de şirkette bi proje ile uğraşıyorum önceki eleman vb ile yazmış gerisini c# ile yapıyorum beni deli ediyor. Yarı vb yarı c#oldu
i'm doing nothing... Giddy Up  http://www.drorhan.com


orhanc

Bir adet Chart ekle forma adına Chart1 de ve koda bunu ekle

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Windows.Forms.DataVisualization.Charting;

namespace Chart
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
  
            var i=0;

            while (i < 5)
            {
            i++;

            var temp = new Series();
            temp.Points.Add(30 + i );
            temp.Points.Add(31 + i);
            temp.Points.Add(32 + i);
            temp.Points.Add(33 + i);
            temp.Points.Add(34 + i);
            temp.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;

            Chart1.Series.Add(temp);
            Chart1.Series.RemoveAt(0);
            Chart1.Update();
            }

        }
    }
}
i'm doing nothing... Giddy Up  http://www.drorhan.com

orhanc

i'm doing nothing... Giddy Up  http://www.drorhan.com

orhanc

Series temp = new Series();


bu şekilde de kullanbilirsin
i'm doing nothing... Giddy Up  http://www.drorhan.com

orhanc

Ben birşey yapmadım basit bir kod sadece :) c# konusunda bildiğim kadarıyla yardımcı olurum.
i'm doing nothing... Giddy Up  http://www.drorhan.com

muhittin_kaplan

herdaim PC programlama Konusunda Yardım Ederim.

cloudstrife

merhaba arkdaşlar
power supplyden gelecek akımı seri porta yönlendiricem bunun içinde bir arayüz yapmam lazım
bu arayüzde ne kullanıcam mesela akım seri porta geldi nasıl anlıycam bu konuda biraz yardım edebilirmisiniz
bir nebzede kod yardımı :D

Emrah
Söz konusu Vatansa gerisi teferruattır !

muhittin_kaplan

doğrudan olmaz. onu güçlü ama değeri az bir dirençten geçirerek üzerine düşen gerilimi MCU ile okuyup Usart tan göndereceksiniz.
gerisi PC ye kalmış.
Vb.net 10 ile Serial nesnesi kullanılıp gayet basit şekilde alınabilinir.
(Kod İstemişsiniz Ama Hangi diller? hem pc hem MCU için)