- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为学生注册创建一个 WPF 应用程序,其中包含一个包含姓名、入学编号、学分等的简单表格。我有一个 Mainwindow.xaml
和一个 Student.cs
。
在我的 MainWindow.xaml
中,我有一个高级按钮,可以根据学分提高学生的水平(如果学生的学分超过 120,则水平应提高到“2 ")
这是带有 Advance() 方法的 Student.cs
class Student
{
private int matric;
private int level;
private int credits;
public Student() { }
public int Matric
{
get { return matric; }
set
{
//there should be a range check for the
matric = value;
}
}
public int Level
{
get { return level; }
set { level = value; }
}
public int Credits
{
get { return credits; }
set { credits = value; }
}
//this is my problem:
public int Advance()
{
if (Credits >= 0 && Credits < 120)
{
return Level;
}
else if (credits >= 120)
{
return Level++;
}
else if (credits >= 240)
{
return Level++;
}
else if (Credits >= 360)
{
return Level++;
}
else
{
return 0;
}
}
}
MainWindow.xaml,只有按钮和文本框的部分
<TextBox x:Name="txtLevel" HorizontalAlignment="Left" Height="23" Margin="184,266,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="120"/>
<TextBox x:Name="txtCredit" HorizontalAlignment="Left" Height="23" Margin="184,328,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="120"/>
<Button x:Name="btnAdvance" Content="Advance" HorizontalAlignment="Left" Margin="324,267,0,0" VerticalAlignment="Top" Width="75" Click="btnAdvance_Click"/>
以及我尝试调用该方法的位置MainWindow.xaml.cs
public partial class MainWindow : Window
{
Student student;
public MainWindow()
{
InitializeComponent();
}
private void btnSet_Click(object sender, RoutedEventArgs e)
{
student = new Student();
student.Credits = int.Parse(txtCredit.Text);
student.Level = int.Parse(txtLevel.Text);
}
private void btnAdvance_Click(object sender, RoutedEventArgs e)
{
student.Advance(); //this should be the call of the method
}
}
当然不行...谁能帮帮我?
编辑这就是我现在拥有的,仍然无法正常工作
public void Advance()
{
if (Credits >= 0 && Credits < 120)
{
Level = 1;
}
else if (credits >= 120 && Level == 1)
{
Level = 2;
}
else if (credits >= 240 && Level == 2)
{
Level = 3;
}
else if (Credits >= 360 && Level == 3)
{
Level = 4;
}
else if (Level == 4)
{
MessageBox.Show("You can't advance more!");
}
else
{
MessageBox.Show("Advance is not possible!");
}
}
最佳答案
实际上,您应该使用绑定(bind)来执行此操作,将 Level 文本框绑定(bind)到学生的 Level 属性,在您的模型上实现 iNotifyPropertyChanged。我建议您研究绑定(bind)并以这种方式重新设计它。
但是,如果您希望继续当前的设计,我建议您进行以下更改以实现您期望的行为:
1) 在 btnSet_Click
中,删除此行:student.Level = int.Parse(txtLevel.Text);
您的级别不应由 TextBox 设置;它应该由 Advance 方法设置。
2) 您的 Advance 方法应如下所示:
public int Advance()
{
if (Credits >= 0 && Credits < 120)
{
level = 1;
}
else if (credits >= 120 && credits < 240)
{
level = 2;
}
else if (credits >= 240 && credits < 360)
{
level = 3;
}
else if (Credits >= 360)
{
if (level != 4)
{
level = 4;
}
else
{
MessageBox.Show("You can't advance more!");
}
}
else
{
MessageBox.Show("Advance is not possible!");
}
return level;
}
3) 将 IsReadOnly="True"
属性添加到关卡文本框,因为它不应从界面中设置。
<TextBox x:Name="txtLevel" IsReadOnly="True" HorizontalAlignment="Left" Height="23" Margin="184,266,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="120"/>
4) 由于您没有使用绑定(bind),因此在您的 Advance_click 中,您需要将返回值发送回界面:
private void btnAdvance_Click(object sender, RoutedEventArgs e)
{
txtLevel.Text = student.Advance(); //this should be the call of the method
}
关于c# - 从 MainWindow 访问类中的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32995150/
我做了我的研究,人们倾向于使用 ViewModel 来实现这一点,但我有点陷入其中。 我有一个 public ObservableCollection orderList { get; set; }
当用户更改主题时,我使用 mainWindow.webContents.send 更改 DOM 中的类。我还将它保存在商店中,在键 theme 下。 mainWindow.webContents.se
所以我有一个名为 MainWindow 的空主框架和一个 WelcomeWidget,它在程序启动时立即调用并加载到主框架中。然后我想要 WelcomeWidget 中的按钮 next_btn 调用
像a一样用slot和signal连接就对了 connect( ui->widget, SIGNAL( GetSquareParameters( int &, int &,int &,int &)),
我正在尝试构建一个桌面应用程序,使用 Electron 在 web View 中打开 gmail。在我的主文件中,我已经加载了这样的网址 mainWindow.loadURL("https://gma
在我的 (Py)Qt4 应用程序中,直到用户使用 command-tab 切换离开应用程序,然后使用 command-tabs 切换回它,主窗 Eloquent 会出现。 奇怪的是这个问题仅在双击启动
我有一个带有菜单的MainWindow,可以打开一个注册对话框。如何在注册后更新 MainWindow 中的 tableView? 这是我的 MainWindow 实现: MainWindow::Ma
我想使用 PyQt5 和 QtDesigner 开始一个新项目。首先,我只是复制了 PyQt4 中以前项目中的代码,并将其调整为 PyQt5 中的更改。因此,启动 Main Window 和更新应用程
我正在尝试制作一个包含 MainWindow.cpp 和一个 dialog1.cpp 的程序,我需要将一个字符串从我的对话框的 QLineEdit 传递到 MainWindow.cpp 中的一个函数。
我有一个使用 Qt Designer 制作的 PyQt5 MainWindow。 这个窗口应该抓取网站并在找到后在 TreeView 中列出抓取的链接。 每次抓取新链接时,我都可以创建一个模型 QSt
我理解 Static 和 Instance 的概念,但我很困惑,当我有一个只有 1 个实例的类时,我应该使用哪个实例,这是在我的应用程序开始时调用的实例 (=Application.Current .
我正在尝试将 MainWindow 的 DataContext 设置为其在 App.OnStartup 中的 ViewModel。我注意到这样做时,MainWindow() 构造函数被调用了两次,我看
是否可以将相对于 MainWindow 的点转换为相对于其子控件之一?例如,假设一个控件的左上角位于 500, 500 相对于 MainWindow 什么代码会将该数字转换为 (0, 0)?我希望解决
所以我按照以下网站上的指南来限制文本框可以接受的字符。 http://www.rhyous.com/2010/06/18/how-to-limit-or-prevent-characters-in-a
我目前正在使用 QT Creator 创建用于查看的 UI 文件,我是 QT 初学者。 有一部分我很好奇,我如何创建另一个类,比如 GraphicView,以便我可以将信号和槽发送到该类而不是主窗体?
我在 MainWindow.xaml.cs 中有这个: public partial class MainWindow : Window { public double _frameCount
我有用户控件,它有两个控件 标签 和 文本 block 并且在我的 MainWindow 中,我有一个 List
我有一个关于 Scope 的初学者问题。在 MainWindow 类中,我创建了用于数据绑定(bind)的 ModelView 类的实例,以及具有要显示的 Leaves 属性的 Cabbage 类的实
首先,在主窗口中看到这段代码 我创建了一个名为 RightPanel 的用户控件,并将其命名为 MainWindow.xaml rightPanel 例如,在用户
首先,在主窗口中看到这段代码 我创建了一个名为 RightPanel 的用户控件,并将其命名为 MainWindow.xaml rightPanel 例如,在用户
我是一名优秀的程序员,十分优秀!