Yazı Font Küçült Yazı Font Büyült

Google da Arama

Bu örneğimizde Google da arama konusunu göreceğiz. Formunuza 1 adet textbox, button ve webBrowser ekleyin. textbox ın name ini txtAra, buttonu btnAra yapın. Aşağıdaki şekili inceleyin.

Resim1

Şekil 1

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;

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

        private void btnAra_Click(object sender, EventArgs e)
        {
            webBrowser1.Navigate("http://www.google.com.tr/search?hl=tr&q=" + txtAra.Text + ("&meta="));

            }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.Text = "Google da Arama";
            this.MinimizeBox = false;
            this.MaximizeBox = false;
            this.Location = new Point(250, 150);
        }
    }
}

//Bir sonraki makalede görüşmek üzere. Bahadır