You are required to create a WPF C# application using Visual Studio.
Problem Statement:
You are required to create a WPF application which will take Student’s data as input and save it in xml file, title must be your VUID:
Layout:
Create a grid Layout with two columns and 5 Rows and add all the elements in this according to the gif file provided.
Input:
Your application will have 4 textboxes for input fields along with labels:
Two Buttons
Clicking Save button will save the data of text boxes into xml file, the file name of .xml file will be your VU ID.xml, for example if your VUID is bc150401234 then file name must be bc150401234.xml.
Please Note that new record must be inserted after existing records if any record exists in the file. Below is the xml file template (this is just example you can change xml file format according to requirements)
<xml> <data id=”bc150201234” name=”Bilal Umar” cgpa=”3.49” semester=”7”/> <data id=”bc160204512” name=”Muhammad Tahir” cgpa=”3.1” semester=”5”/>
</xml> |
Write your own VU id and Name in the application name and id fields while creating .gif file, otherwise your assignment will not be accepted.
Output.gif has been attached with this Assignment file please observe this file carefully your program’s output must be like this output file.
Submission details Following Files Must be submitted in a single zip or rar file. · .C# code file · .XAML File (Front End file) · .XML Data file (named as your (VU ID).xml) · A .gif file which shows working of your Application(For Recording .gif a software named Screentogif is uploaded on LMS, or you can use any other gif recording tool as well) You are not required to submit the complete project, only copy these three files from project folder. Please note if you submit doc file you will be awarded 0 marks. |
Tags:
Please help any person have this solution
guys please share the solution
Cs411_Assignment #2 Solution Idea,
Here is the hint for the solution,dont ask me to complete assignment for you !
public class information
{
private string txtdata1;
private string txtdata2;
private string txtdata3;
private string txtdata4;
public string StudentName
{
get { return txtdata1; }
set { txtdata1 = value; }
}
public string StudentID
{
get { return txtdata2; }
set { txtdata2 = value; }
}
public string StudentCGPA
{
get { return txtdata3; }
set { txtdata3 = value; }
}
public string StudentSemester
{
get { return txtdata4; }
set { txtdata4 = value; }
}
}
}
Sir plz guide me where is the problems in this code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.xml.linq;
using System.IO;
namespace BS150201907
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void buttonsave_Click(object sender, RoutedEventArgs e)
{
xdocument xdoc;
string myfile = "bs150201907.xml";
if (!File.Exists(myfile))
{
xdoc = new xdocument(new xelement("xml"));
xdoc.save(myfile);
}
xdoc = xdocument.load(myfile);
xdoc.element("xml").Add(new Xelement("data", new xattribute("name", textboxname.text),
new xattribute("student id", textboxstudentid.text),
new xattribute("cgpa", textboxcgpa.text),
new xattribute("semester", textboxsemester.text),
));
xdoc.save(myfile);
messagebox.show("Data Saved Successfully!");
}
private void buttonreset_Click(object sender, RoutedEventArgs e)
{
}
}
}
Kindly will you share solution video ??
complete solution
© 2021 Created by + M.Tariq Malik.
Powered by
Promote Us | Report an Issue | Privacy Policy | Terms of Service
We are user-generated contents site. All product, videos, pictures & others contents on site don't seem to be beneath our Copyrights & belong to their respected owners & freely available on public domains. We believe in Our Policy & do according to them. If Any content is offensive in your Copyrights then please email at m.tariqmalik@gmail.com with copyright detail & We will happy to remove it immediately.
Management: Admins ::: Moderators
Awards Badges List | Moderators Group
All Members | Featured Members | Top Reputation Members | Angels Members | Intellectual Members | Criteria for Selection
Become a Team Member | Safety Guidelines for New | Site FAQ & Rules | Safety Matters | Online Safety | Rules For Blog Post