Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BookmarkAssistant.cs - github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c8405e3177fc7a61e81e2fac7e090f8f8436660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using MonoMac.Foundation;
using MonoMac.AppKit;

namespace macdoc
{
	public partial class BookmarkAssistant : MonoMac.AppKit.NSView
	{
		public BookmarkAssistant (IntPtr handle) : base (handle)
		{
		}
		
		[Export ("initWithCoder:")]
		public BookmarkAssistant (NSCoder coder) : base (coder)
		{
		}
		
		public NSTableView TableView {
			get {
				return bookmarkTableView;
			}
		}
		
		public NSButtonCell DeleteButtonCell {
			get {
				return bookmarkTableDeleteBtn;
			}
		}
	}
}