#include <iostream> class Student { private: int id; char *name; int age; public: Student(int the_id,char *the_name,int the_age) { id = the_id; name = the_name; age = th…
环境 这里博主用的是 VS UI界面 采用MahApps.Metro smirk: 1. 安装Nuget的 MahApps.Metro 2. 添加引用 xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls" 将<Window …标签更改为 <Controls:Metro…