Spring 2024 - CS411 - 2 - BC210206522
Spring 2024 - CS411 - 2 - BC210206522
Assignment No. 02
Semester: Spring 2024
BC210206522
Asif Naseem
Solution:
//Put your XAML code (code of the MainWindow.xaml file) here
Solution:
<Window x:Class="SimpleCalculator.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Simple Calculator" Height="250" Width="400" Background="LightBlue">
<Grid>
<StackPanel>
<!-- VU ID -->
<TextBlock Text="VU ID: BC210206522" FontWeight="Bold" FontSize="16" Margin="10"
Background="Yellow" HorizontalAlignment="Center" />
Solution:
using System;
using System.Windows;
namespace SimpleCalculator
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}
}