使用 C#.NET4.5 和 Visual Studio 2012 Ultimate。
我目前正在尝试使用我的标签打印程序 Ive Used Interfaces 之前的抽象类。
我使用接口来解耦我的两个类,效果很好。
现在我尝试以下。
第一个。我的抽象类...
abstract class Label
{
public virtual IList<Microsoft.Reporting.WinForms.ReportParameter> NewReportSetup(string part, string batch, string locn, string wheel, string gear, string length,
string fits, string newbar, string newbarnum, string abs)
{
IList<Microsoft.Reporting.WinForms.ReportParameter> parameters = new List<Microsoft.Reporting.WinForms.ReportParameter>();
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramPart", part));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramBatch", batch));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramLocn", locn));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramWheel", wheel));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramGear", gear));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramLength", length));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramABS", abs));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramBuyer", fits));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramBarCode", newbar));
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramBartxt", newbarnum));
return parameters;
}
}
第二。我的 ReportShaft 继承标签...
class ReportShaft : Label
{
public virtual IList<Microsoft.Reporting.WinForms.ReportParameter> NewReportSetup()
{
return new List<Microsoft.Reporting.WinForms.ReportParameter>();
}
}
第三。我的表单实例化 ReportShaft 类并调用 NewReportSetup()...
private void NewReportSetupSHAFT()
{
if(txtABS.Text.ToString() == "" || txtABS.Text == null)
{
txtABS.Text = "N/A";
}
IList<Microsoft.Reporting.WinForms.ReportParameter> param = new List<Microsoft.Reporting.WinForms.ReportParameter>();
param = reportshaft.NewReportSetup(txtNewPart.Text.ToString(),
txtBatch.Text.ToString(), txtLocation.Text.ToString(), txtWheel.Text.ToString(), txtGear.Text.ToString(), txtLength.Text.ToString(),
txtFits.Text.ToString(), txtNewBar.Text.ToString(), txtNewBarNum.Text.ToString(), txtABS.Text.ToString());
reportViewer1.LocalReport.SetParameters(param);
}
这很好用(虽然我觉得我以错误的方式使用抽象类,不确定)。
我的问题是:
我想创建一个新的报告类。我希望类调用相同的方法,但允许我更改前 2 个参数名称,并完全跳过最后一个。
现在这需要覆盖该方法吗?如果是这样,人们将如何做到这一点?Label 方法是否需要从Virtual Function更改?
非常感谢伙计们!
更新::当我提到参数时,好的似乎有些混乱。
我的意思是说我希望从我的抽象类中调用 1 方法,然后在我继承此标签类和方法的报告类中,我希望更改“报告参数”,我的意思是方法的主体。
这样做的原因是因为如果我简单地创建另一个方法并为每个不同的报告调用它,我将使用几乎相同的方法。
继承人的例子::改变这个..
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramPart", part));
太这了。。
parameters.Add( new Microsoft.Reporting.WinForms.ReportParameter("paramchanged!!", part));
这是一个例子。所以从我收集到的信息中,我在我的报告类中覆盖了我的标签类方法。但是后来我卡住了,如果我尝试更改正文,我必须输入其余的代码。对我来说,我仍然会得到一堆看起来相同的方法。
无论如何都可以更改“方法主体的部分部分”而不必输入其余部分。
希望这能消除混乱。