tags:

views:

21

answers:

0

Can i pass two string as eventargs on a button click

internal void OnSaveComm(string strTitle,string strLink)
    {
       WorkItem.EventTopics[EventTopicNames.AgentRecentComm].Fire(this,new EventArgs<> XYZ,WorkItem,Microsoft.Practices.CompositeUI.EventBroker.PublicationScope.Global);
    }

Using Event broker to pass string to subscribing event to display in a different view.