mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
Simplified usages in UIX project
This commit is contained in:
@@ -12,12 +12,12 @@ namespace Microsoft.Iris.Markup
|
||||
|
||||
public MarkupDataQuery(MarkupDataQuerySchema type)
|
||||
: base(type)
|
||||
=> this._owner = type;
|
||||
=> _owner = type;
|
||||
|
||||
protected void ApplyDefaultValues()
|
||||
{
|
||||
Map map = null;
|
||||
for (MarkupDataQuerySchema owner = this._owner; owner != null; owner = owner.Base as MarkupDataQuerySchema)
|
||||
for (MarkupDataQuerySchema owner = _owner; owner != null; owner = owner.Base as MarkupDataQuerySchema)
|
||||
{
|
||||
foreach (MarkupDataQueryPropertySchema property in owner.Properties)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user