我需要在内置的Excel表单打开时手动将工作表中的内容复制粘贴到userform。
using GalaSoft.MvvmLight;
namespace ...
{
public class FileLinkViewModel : ViewModelBase
{
private string _FileName;
public string FileName
{
get
{
return _FileName;
}
set
{
Set(() => FileName, ref _FileName, value);
}
}
}
}
无论如何我可以让它无模式吗?