SilverFlow.Controls.FloatingWindow.GetAppSettingsKey C# (CSharp) Method

GetAppSettingsKey() private method

Gets the application settings key used to store properties in the IsolatedStorage.
private GetAppSettingsKey ( string key ) : string
key string The key of the property, e.g. "Position".
return string
        private string GetAppSettingsKey(string key)
        {
            string tag = this.Tag as string;
            return tag + ":" + key;
        }
FloatingWindow