GetEntityStringAndHashCode() public static method

public static GetEntityStringAndHashCode ( object newValue ) : string
newValue object
return string
コード例 #1
0
ファイル: EntityBase.cs プロジェクト: jeason0813/framework-2
        protected virtual void OnEntityChanged(object oldValue, object newValue)
        {
            EntityChanged?.Invoke(this, isUserInteraction, oldValue, newValue);

            AutomationProperties.SetItemStatus(this, Common.GetEntityStringAndHashCode(newValue));

            UpdateVisibility();
        }