예제 #1
0
 void Read()
 {
     if (binding != null)
     {
         filePath = binding.GetRelativePath();
     }
     else
     {
         filePath = string.Empty;
     }
 }
예제 #2
0
        void Read()
        {
            if (binding != null)
            {
                absoluteFilePath = binding.GetAbsolutePath();
                relativeFilePath = binding.GetRelativePath();
            }
            else
            {
                absoluteFilePath = string.Empty;
                relativeFilePath = string.Empty;
            }

            UpdateInformation();
        }