Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 34f4fae

Browse files
committed
Fix some constantly changing properties
1 parent 763a1fa commit 34f4fae

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
using System;
2+
namespace Android.Support.V7.Widget
3+
//.RecyclerView.RequestDisallowInterceptTouchEventEventArgs
4+
{
5+
public partial class RecyclerView
6+
{
7+
public partial class InterceptTouchEventEventArgs
8+
{
9+
public RecyclerView RecyclerView {
10+
get { return this.Rv; }
11+
}
12+
}
13+
14+
public partial class RequestDisallowInterceptTouchEventEventArgs
15+
{
16+
public bool Disallow
17+
{
18+
get { return this.DisallowIntercept; }
19+
}
20+
}
21+
22+
public partial class TouchEventEventArgs
23+
{
24+
public RecyclerView RecyclerView
25+
{
26+
get { return this.Rv; }
27+
}
28+
}
29+
}
30+
}

recyclerview-v7/source/V7-RecyclerView.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
</ItemGroup>
5353
<ItemGroup>
5454
<Compile Include="Properties\AssemblyInfo.cs" />
55+
<Compile Include="Additions\Additions.cs" />
5556
</ItemGroup>
5657
<ItemGroup>
5758
<TransformFile Include="..\..\Metadata.generated.xml" />

0 commit comments

Comments
 (0)