BCA / B.Tech 11 min read

Windows Application in .NET in Hindi | Windows Application क्या है?

Windows Application in .NET in Hindi | .NET में Windows Application हिंदी में :


  • Windows Application एक प्रकार का सॉफ़्टवेयर एप्लिकेशन है, जो Windows ऑपरेटिंग सिस्टम पर चलता है। 
  • .NET Framework, Microsoft द्वारा विकसित एक प्लेटफ़ॉर्म है, जो विभिन्न प्रकार के एप्लिकेशन (Windows Forms, Web Applications, और Web Services) बनाने के लिए इस्तेमाल किया जाता है। 
  • Windows Forms .NET Framework का हिस्सा है, जो GUI (Graphical User Interface) एप्लिकेशन बनाने में मदद करता है।
Windows Application in .NET in Hindi | Windows Application क्या है?

Windows Forms in .NET in Hindi 

  • Windows Forms एक ग्राफिकल इंटरफ़ेस है, जो .NET Framework पर आधारित है।
  • यह डेवलपर्स को आसानी से एप्लिकेशन बनाने के लिए टूल्स और कंट्रोल्स प्रदान करता है। 
  • Windows Forms एप्लिकेशन में मुख्यतः फॉर्म और कंट्रोल्स का उपयोग होता है।
Label Control in .NET in Hindi 

  • कार्य: Text दिखाने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Text, Font, ForeColor, BackColor।
उदाहरण:

label1.Text = "नाम दर्ज करें:";
label1.Font = new Font("Arial", 12, FontStyle.Bold);

Button Control in .NET in Hindi 

  • कार्य: किसी क्रिया को निष्पादित करने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Text, Click Event।
उदाहरण:

private void button1_Click(object sender, EventArgs e)
{
    MessageBox.Show("बटन क्लिक हुआ!");
}

TextBox Control in .NET in Hindi 

  • कार्य: डेटा (टेक्स्ट) दर्ज करने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Text, MaxLength, ReadOnly।
उदाहरण:
string enteredText = textBox1.Text;

ComboBox Control in .NET in Hindi 

  • कार्य: ड्रॉपडाउन सूची से विकल्प चुनने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Items, SelectedItem।
उदाहरण:
comboBox1.Items.Add("भारत");
comboBox1.Items.Add("अमेरिका");

ListBox Control in .NET in Hindi 

  • कार्य: कई विकल्पों में से एक या अधिक चुनने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Items, SelectedItems।
उदाहरण:
listBox1.Items.Add("क्रिकेट");
listBox1.Items.Add("फुटबॉल");

CheckedListBox Control in .NET in Hindi 

  • कार्य: चेकबॉक्स के साथ एक सूची प्रदान करता है।
  • प्रॉपर्टीज: Items, CheckedItems।
उदाहरण:

checkedListBox1.Items.Add("कंप्यूटर");
checkedListBox1.Items.Add("मोबाइल");

RadioButton Control in .NET in Hindi 

  • कार्य: विकल्पों में से केवल एक चुनने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Text, Checked।
उदाहरण:

if (radioButton1.Checked)
{
    MessageBox.Show("पहला विकल्प चुना गया।");
}

PictureBox Control in .NET in Hindi 

  • कार्य: चित्र दिखाने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Image, SizeMode।
  • उदाहरण: pictureBox1.Image = Image.FromFile("image.jpg");
ScrollBars Control in .NET in Hindi 

  • कार्य: स्क्रीन के कंटेंट को स्क्रॉल करने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Minimum, Maximum, Value।
उदाहरण:
vScrollBar1.ValueChanged += VScrollBar1_ValueChanged;

DateTimePicker Control in .NET in Hindi 

  • कार्य: दिनांक और समय चुनने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Value, Format।
  • उदाहरण:DateTime selectedDate = dateTimePicker1.Value;
TreeView Control in .NET in Hindi 

  • कार्य: डेटा को हाइरार्किकल (पेड़ के रूप में) दिखाने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Nodes।
उदाहरण:

treeView1.Nodes.Add("मूल नोड");
treeView1.Nodes[0].Nodes.Add("उप नोड");

ListView Control in .NET in Hindi 

  • कार्य: आइटम की सूची दिखाने के लिए उपयोग किया जाता है।
  • प्रॉपर्टीज: Items, View।
  • उदाहरण: listView1.Items.Add("प्रथम आइटम");
Menu Control in .NET in Hindi 

  • कार्य: मेनू बार बनाने के लिए उपयोग किया जाता है।
उदाहरण:

menuStrip1.Items.Add("फ़ाइल");
menuStrip1.Items[0].DropDownItems.Add("नया");

MDI Form in .NET in Hindi 

  • कार्य: Multiple Document Interface (MDI) में कई फॉर्म्स को प्रबंधित करने के लिए।
उदाहरण:
childForm.MdiParent = this;
childForm.Show();

Color Dialog Box in .NET in Hindi 

  • कार्य: रंग चुनने के लिए।
उदाहरण:

if (colorDialog1.ShowDialog() == DialogResult.OK)
{
    this.BackColor = colorDialog1.Color;
}

Font Dialog Box in .NET in Hindi 

  • कार्य: फॉन्ट चुनने के लिए।
उदाहरण:

if (fontDialog1.ShowDialog() == DialogResult.OK)
{
    label1.Font = fontDialog1.Font;
}

OpenFile Dialog Box in .NET in Hindi 

कार्य: फ़ाइल खोलने के लिए।
उदाहरण:

if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
    MessageBox.Show(openFileDialog1.FileName);
}
 
Print Dialog Box in .NET in Hindi 

कार्य: प्रिंट करने के लिए।
उदाहरण:

if (printDialog1.ShowDialog() == DialogResult.OK)
{
    printDocument1.Print();
}
यह कंट्रोल्स .NET Framework के Windows Forms एप्लिकेशन का आधार हैं। इनका उपयोग करके डेवलपर्स उपयोगकर्ता-अनुकूल GUI एप्लिकेशन बना सकते हैं।

In this Chapter

Windows Application in .NET in Hindi | Windows Application क्या है?
Introduction of .Net in Hindi
Web Services in Hindi | वेब सर्विसेस हिंदी में
WSDL in Hindi | WSDL हिंदी में
Boxing & Unboxing in ADO.NET in Hindi
CLR in Hindi | CLR क्या है?
Common Types System in Hindi
MSIL in Hindi
Assemblies & Class Libraries in Hindi
Project of .Net in Hindi
What is VB.NET and IDE in Hindi | वीबी.नेट क्या है ?
Intermediate Language in Hindi
Object Orientation in Hindi
Managed Execution in Hindi
Rapid Development in Hindi
Windows Presentation Foundation in Hindi
Whats new For .NET framework 3.5?
Windows Workflow Foundation (WWF) in Hindi
Windows Card Space in Hindi
Windows Communication Foundation in Hindi
How To Install and Use The Visual Studio 2008
How to Working With Visual Studio 2008
Types of Visual Studio 2008 in Hindi
Visual Studio 2008 IDE in Hindi
How To Create Console Application in Hindi
Introduction of C# in .NET in Hindi
Classes of .NET With C# in Hindi
Properties of .NET With C# in Hindi
Structs in C# .NET in Hindi
Delegates & Events in Hindi
Generic Collections in .NET (C#) in Hindi
Type Safety in Hindi
Nullable Types in .NET in Hindi
ADO.NET in Hindi | ADO.NET क्या है?
SQL Connection Object in Hindi
SQL Command in Hindi
LINQ in Hindi | LINQ क्या है?
What is Using Stored Procedures?
BCA || .NET with C# 2023 Paper | MDSU Exam Paper
.NET with C# All Important Questions and Answers in Hindi (MDSU)
BCA || .NET with C# 2025 Paper | MDSU Exam Paper