1 write to owner
System.Windows.Forms (1)
winforms\Managed\System\WinForms\LinkLabel.cs (1)
1975
this.
owner
= owner;
58 references to owner
System.Windows.Forms (58)
winforms\Managed\System\WinForms\LinkLabel.cs (58)
1984
return(Link)
owner
.links[index];
1987
owner
.links[index] = value;
1989
owner
.links.Sort(LinkLabel.linkComparer);
1991
owner
.InvalidateTextLayout();
1992
owner
.Invalidate();
2043
return
owner
.links.Count;
2114
if (
owner
.links.Count == 1
2118
owner
.links.Clear();
2119
owner
.FocusLink = null;
2122
Link l = new Link(
owner
);
2142
if (
owner
.links.Count == 1
2146
owner
.links.Clear();
2147
owner
.FocusLink = null;
2151
value.Owner = this.
owner
;
2153
owner
.links.Add(value);
2155
if (this.
owner
.AutoSize) {
2156
LayoutTransaction.DoLayout(this.
owner
.ParentInternal, this.
owner
, PropertyNames.Links);
2157
this.
owner
.AdjustSize();
2158
this.
owner
.Invalidate();
2161
if (
owner
.Links.Count > 1) {
2162
owner
.links.Sort(LinkLabel.linkComparer);
2165
owner
.ValidateNoOverlappingLinks();
2166
owner
.UpdateSelectability();
2167
owner
.InvalidateTextLayout();
2168
owner
.Invalidate();
2170
if (
owner
.Links.Count > 1) {
2205
return
owner
.links.Contains(link);
2232
return
owner
.links.IndexOf(link);
2292
bool doLayout = this.
owner
.links.Count > 0 && this.
owner
.AutoSize;
2293
owner
.links.Clear();
2296
LayoutTransaction.DoLayout(this.
owner
.ParentInternal, this.
owner
, PropertyNames.Links);
2297
this.
owner
.AdjustSize();
2298
this.
owner
.Invalidate();
2301
owner
.UpdateSelectability();
2302
owner
.InvalidateTextLayout();
2303
owner
.Invalidate();
2309
owner
.links.CopyTo(dest, index);
2317
if (
owner
.links != null) {
2318
return
owner
.links.GetEnumerator();
2331
if (value.Owner != this.
owner
) {
2335
owner
.links.Remove(value);
2337
if (this.
owner
.AutoSize) {
2338
LayoutTransaction.DoLayout(this.
owner
.ParentInternal, this.
owner
, PropertyNames.Links);
2339
this.
owner
.AdjustSize();
2340
this.
owner
.Invalidate();
2343
owner
.links.Sort(LinkLabel.linkComparer);
2345
owner
.ValidateNoOverlappingLinks();
2346
owner
.UpdateSelectability();
2347
owner
.InvalidateTextLayout();
2348
owner
.Invalidate();
2350
if (
owner
.FocusLink == null &&
owner
.links.Count > 0) {
2351
owner
.FocusLink = (Link)
owner
.links[0];