public DefaultServerQueryButtonLayoutOptions(Template <LayoutTemplateOptions> template,
                                                     IHtmlContent operationAttributes,
                                                     string queryName,
                                                     QueryDescription query,
                                                     string buttonText,
                                                     string buttonTitle,
                                                     string buttonIcon,
                                                     string buttonCss,
                                                     QueryWindowType type

                                                     ) : base(null, null, template, null, null)
        {
            OperationAttributes = operationAttributes;
            QueryName           = queryName;
            Query       = query;
            ButtonText  = buttonText;
            ButtonTitle = buttonTitle;
            ButtonCss   = buttonCss; this.Type = type;
        }
예제 #2
0
 private int Query(QueryWindowType query)
 {
     return(NtSystemCalls.NtUserQueryWindow(Handle, query));
 }
예제 #3
0
 public static extern int NtUserQueryWindow(IntPtr Window, QueryWindowType query);