我目前正在为我的asp.net发布者和Windows窗体应用程序订阅者开发WCF发布订阅服务。
对于Windows窗体应用程序,我将使用流布局面板为我的应用程序生成面板(通知)列表。当发布者(asp.net应用程序)向服务发布帖子时,每个订阅者都能够接收信息并相应地更新他们的面板。至于我的flowlayoutpanel,我有一个ComboBox来过滤通知类型,主要是类型1和2。
ComboBox警报的代码是
private void comboAlertType_SelectedIndexChanged(object sender, EventArgs e)
{
flowLayoutForAlert.Dispose();
populateList();
if (comboAlertType.SelectedIndex == 0)
{
flowLayoutForAlert = createFlowLayoutPanel(1);
}
else if (comboAlertType.SelectedIndex == 1)
{
flowLayoutForAlert = createFlowLayoutPanel(2);
}
else
{
flowLayoutForAlert = createFlowLayoutPanel(3);
}
this.Controls.Add(flowLayoutForAlert);
}
createFlowlayoutpanel(#)只是我创建面板的一种方法。内部整数代表所示面板类型,主要是每个面板1个,重要面板2个,普通面板3个。
对于wcf服务的PostReceived()回调方法,我有以下代码
public void PostReceived(String alertId)
{
backgroundForm b = (backgroundForm) Application.OpenForms[0];
b.BeginInvoke((MethodInvoker)delegate()
{
b.getMainFormObject().lblSearch.Text = "lakjslkaja";
b.getSettingsFormObject().player.Play();
b.getMainFormObject().notificationList.Add(new notificationForm("", "", "", "", "", "", 1, 1));
b.getMainFormObject().populateList();
b.getMainFormObject().mainFormLoad();
});
}
mainFormLoad的代码是
public void mainFormTesting()
{
notificationForm tempForm = (notificationForm)notificationList[0];
tempForm.Show();
flowLayoutForAlert = createFlowLayoutPanel(1);
this.Controls.Add(flowLayoutForAlert);
}
当我第一次启动应用程序时,组合框警报过滤器适用于初始数量的面板,但是当我发布帖子并且应用程序收到帖子时,它会搞砸组合框过滤器功能。
任何人都可以解决这个问题吗?
答案 0 :(得分:0)
通过在调用上述代码之前首先处理原始面板来管理解决它。