本文介绍了重定向到类方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨得到了接口IMathOperationDemo,其中定义了Normale类的方法.

HiGot interface IMathOperationDemo where are defined the methods of class Normale.

IMathOperationDemo CurrentOperation;
       private void comboShperndarjet_SelectedIndexChanged(object sender, EventArgs e)
       {
           switch (comboShperndarjet.SelectedItem.ToString)
           {
               case "Normale":
                   decimal Alpha = numericUpAlpha.Value;
                   CurrentOperation = new Normale();
                   break;



在主表单中有一个组合框,想要填充一些文本框
通过在案例Normale中访问类Normal方法.

我怎样才能做到这一点?

关于



In the main form got a combo-box and want to fill some textbox
by accessing class Normal methods inside the case Normale.

How can I make this possible?

Regards

推荐答案



这篇关于重定向到类方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 18:30