Exemplo n.º 1
0
        public string RaiseOnCustomModuleClicked(object sender, string moduleName, string content)
        {
            var args = new WpfCustomModuleEventArgs(moduleName, ref content);

            OnCustomModuleEditingRequest?.Invoke(sender, args);
            return(args.Content);
        }
Exemplo n.º 2
0
 public void RaiseOnCustomModuleContentEditRequested(object sender, WpfCustomModuleEventArgs args)
 {
     OnCustomModuleContentEditRequested?.Invoke(sender, args);
 }