Unity 打开Windows文件窗口

准备

  1. Github:ookii-dialogs-winforms,下载后缀为nupkg的文件,修改后缀为rar,解压打开找到Ookii.Dialogs.WinForms.dll
  2. Assets目录下新建css.rsp文件,文件内容为:-r:System.Windows.Forms.dll
  3. API等级调整为.NET Framework
  4. Unity版本2021.3.6f1c1

使用

using Ookii.Dialogs.WinForms;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System;
using UnityEngine;
public class Dialog
{
    
    
    [DllImport("user32.dll")]
    private static extern IntPtr GetActiveWindow();
    public void OpenWindowFolder()
    {
    
    
        var openFileDialog = new VistaOpenFileDialog();
        openFileDialog.Multiselect = false;//是否多选
        openFileDialog.Title = "Open Folder";//窗口名称
        openFileDialog.InitialDirectory = "D:\\";//首次打开的窗口路径
        openFileDialog.RestoreDirectory = false;//重定向
        openFileDialog.FilterIndex = 1;//过滤索引
        openFileDialog.Filter = "Image files (*.jpg, *.jpeg, *.jpe, *.jfif, *.png) | *.jpg; *.jpeg; *.jpe; *.jfif; *.png";//选择的文件
        
        try
        {
    
    
            if (openFileDialog.ShowDialog(new WindowFolder(GetActiveWindow())) == DialogResult.OK)
            {
    
    
                Debug.Log(openFileDialog.FileName);//单个文件路径
                for (int i = 0; i < openFileDialog.FileNames.Length; i++)//多个文件路径
                {
    
    
                    Debug.Log("路径" + openFileDialog.FileNames[i]);
                }
            }
        }
        catch (Exception e)
        {
    
    
            Debug.Log(e.StackTrace);
            Debug.Log(e.Source);
            Debug.Log(e.Message);
        }
    }
}
using System;
using System.Windows.Forms;
public class WindowFolder : IWin32Window
{
    
    
    IntPtr handle;
    public WindowFolder(IntPtr handle)
    {
    
    
        this.handle = handle;
    }
    public IntPtr Handle
    {
    
    
        get {
    
     return handle; }
    }
}

测试

if (GUILayout.Button("test"))
{
    
    
    var dialog = new Dialog();
    dialog.OpenWindowFolder();
}

猜你喜欢

转载自blog.csdn.net/weixin_43796392/article/details/127985415