View | Details | Raw Unified | Return to bug 467086
Collapse All | Expand All

(-)System.Windows.Forms/ListView.cs (+6 lines)
Lines 6244-6249 Link Here
6244
		}
6244
		}
6245
#endif
6245
#endif
6246
6246
6247
		internal void RaiseColumnWidthChanged (ColumnHeader column)
6248
		{
6249
			int index = Columns.IndexOf (column);
6250
			RaiseColumnWidthChanged (index);
6251
		}
6252
6247
#if NET_2_0
6253
#if NET_2_0
6248
		
6254
		
6249
		#region UIA Framework: Methods, Properties and Events
6255
		#region UIA Framework: Methods, Properties and Events
(-)System.Windows.Forms/ColumnHeader.cs (-3 / +7 lines)
Lines 315-323 Link Here
315
		public int Width {
315
		public int Width {
316
			get { return width; }
316
			get { return width; }
317
			set {
317
			set {
318
				width = value;
318
				if (width != value) {
319
				if (owner != null)
319
					width = value;
320
					owner.Redraw (true);
320
					if (owner != null) {
321
						owner.Redraw (true);
322
						owner.RaiseColumnWidthChanged (this);
323
					}
324
				}
321
			}
325
			}
322
		}
326
		}
323
		#endregion // Public Instance Properties
327
		#endregion // Public Instance Properties

Return to bug 467086