Click here to Skip to main content
15,895,656 members
Articles / Programming Languages / C#

Scalar Data Visualization: Part 3

Rate me:
Please Sign up or sign in to vote.
4.69/5 (18 votes)
5 Jan 2007BSD4 min read 46.8K   907   34  
This article will descirbe in more detail the flooded contouring section.
//-----------------------------------------------------------------------------
// File: About.cs
//
// DemolitiOn is My MissiOn
//
// Copyright (c) Ibrahim Hamed. All rights reserved.
//-----------------------------------------------------------------------------

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

namespace ScoOteRLoAdeR
{
	public partial class About : Form
	{
		public About()
		{
			InitializeComponent();
		}

		private void About_Load(object sender, EventArgs e)
		{
			string[] lines = new string[5];
			lines[0] = "ScoOteR Visualization Studio";
			lines[1] = "Version: 1.0.1";
			lines[2] = "";
			lines[3] = "For Technical support:";
			lines[4] = "I_gO_tO_SchoOl_bY_ScoOteR@yahOo.cOm";
			textBox1.Lines = lines;
			button1.Focus();
		}

		private void button1_Click(object sender, EventArgs e)
		{
			this.Close();
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Other
Egypt Egypt
Nvidia Registered game developer.
Teaching Assistant,
Faculty of computer and information sciences,
Ain Shams University.
SmartLabZ QT Developer.
Have an experience of more than 2 years in c++(QT/MFC/ATL/Win32),c#, GDI,DirectX

Comments and Discussions