本文介绍了MainWindow方法外不能使用文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作一个整数,该整数由box1(在wpf中)中的数字组成.但是编译器不允许我编译代码.怎么了?

I'm trying to make an integer which consists of numbers that are in box1 (in wpf).but the compiler won't allow me to compile my code. what's wrong?

    public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }
    private int addValues()
    {
        int var1 = int.Parse(box1.Text);
    }
}

错误是:

wpfapplication1.mainwindow.addValues.并非所有代码路径都返回值

wpfapplication1.mainwindow.addValues. not all code paths return a value

推荐答案

private int addValues()
{
    int var1 = int.Parse(box1.Text);
    return var1;
}

这是不明智的,它具有返回类型但不返回值的方法.

Its non-sensible, having a method with a return type but not returns a value.

明智,

private void addValues()
{
    int var1 = int.Parse(box1.Text);
}

这篇关于MainWindow方法外不能使用文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 20:22