如何显示内置数据表无模式

时间:2016-12-11 19:05:16

标签: forms vba excel-vba excel

我需要在内置的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);
            }
        }
    }
}

无论如何我可以让它无模式吗?

0 个答案:

没有答案