Example #1
0
        private void internalRequestFileChooser(IntPtr caller, bool select_multiple_files, IntPtr title, IntPtr default_paths)
        {
            RequestFileChooserEventArgs e = new RequestFileChooserEventArgs(this, select_multiple_files, title, default_paths);

            if (OnRequestFileChooser != null)
                OnRequestFileChooser(this, e);
        }
Example #2
0
        private void internalRequestFileChooser(IntPtr caller, bool select_multiple_files, IntPtr title, IntPtr default_paths)
        {
            RequestFileChooserEventArgs e = new RequestFileChooserEventArgs(this, select_multiple_files, 
                StringHelper.ConvertAweString(title), StringHelper.ConvertAweString(default_paths));

            if (OnRequestFileChooser != null)
                OnRequestFileChooser(this, e);
        }