Skip to content

Commit

Permalink
Revert "调试是否有些属性获取不到值"
Browse files Browse the repository at this point in the history
This reverts commit 23a0c0c.
  • Loading branch information
lindexi committed Jul 10, 2024
1 parent 23a0c0c commit cb06992
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/dotnetCampus.UISpy.Uno/Tree/ElementProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,7 @@ public ImmutableArray<ElementPropertyProxy> GetProperties()
{
try
{
object? value;
if (propertyDescriptor.Name == "ActualWidth")
{

}
value = propertyDescriptor.GetValue(Element);
var value = propertyDescriptor.GetValue(Element);
properties.Add(new ElementPropertyProxy(
Element,
propertyDescriptor.Name,
Expand Down

0 comments on commit cb06992

Please sign in to comment.