зеркало из https://github.com/xamarin/ios-samples.git
90 строки
2.5 KiB
C#
90 строки
2.5 KiB
C#
// ------------------------------------------------------------------------------
|
|
// <autogenerated>
|
|
// This code was generated by a tool.
|
|
// Mono Runtime Version: 2.0.50727.1433
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </autogenerated>
|
|
// ------------------------------------------------------------------------------
|
|
|
|
namespace AUSoundTriggeredPlayingSoundMemoryBased {
|
|
|
|
|
|
// Base type probably should be MonoTouch.UIKit.UIViewController or subclass
|
|
[MonoTouch.Foundation.Register("MainView")]
|
|
public partial class MainView {
|
|
|
|
private MonoTouch.UIKit.UIView __mt_view;
|
|
|
|
private MonoTouch.UIKit.UIButton __mt__playButton;
|
|
|
|
private MonoTouch.UIKit.UIButton __mt__stopButton;
|
|
|
|
private MonoTouch.UIKit.UISlider __mt__slider;
|
|
|
|
private MonoTouch.UIKit.UILabel __mt__signalLevelLabel;
|
|
|
|
#pragma warning disable 0169
|
|
[MonoTouch.Foundation.Connect("view")]
|
|
private MonoTouch.UIKit.UIView view {
|
|
get {
|
|
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
|
|
return this.__mt_view;
|
|
}
|
|
set {
|
|
this.__mt_view = value;
|
|
this.SetNativeField("view", value);
|
|
}
|
|
}
|
|
|
|
[MonoTouch.Foundation.Connect("_playButton")]
|
|
private MonoTouch.UIKit.UIButton _playButton {
|
|
get {
|
|
this.__mt__playButton = ((MonoTouch.UIKit.UIButton)(this.GetNativeField("_playButton")));
|
|
return this.__mt__playButton;
|
|
}
|
|
set {
|
|
this.__mt__playButton = value;
|
|
this.SetNativeField("_playButton", value);
|
|
}
|
|
}
|
|
|
|
[MonoTouch.Foundation.Connect("_stopButton")]
|
|
private MonoTouch.UIKit.UIButton _stopButton {
|
|
get {
|
|
this.__mt__stopButton = ((MonoTouch.UIKit.UIButton)(this.GetNativeField("_stopButton")));
|
|
return this.__mt__stopButton;
|
|
}
|
|
set {
|
|
this.__mt__stopButton = value;
|
|
this.SetNativeField("_stopButton", value);
|
|
}
|
|
}
|
|
|
|
[MonoTouch.Foundation.Connect("_slider")]
|
|
private MonoTouch.UIKit.UISlider _slider {
|
|
get {
|
|
this.__mt__slider = ((MonoTouch.UIKit.UISlider)(this.GetNativeField("_slider")));
|
|
return this.__mt__slider;
|
|
}
|
|
set {
|
|
this.__mt__slider = value;
|
|
this.SetNativeField("_slider", value);
|
|
}
|
|
}
|
|
|
|
[MonoTouch.Foundation.Connect("_signalLevelLabel")]
|
|
private MonoTouch.UIKit.UILabel _signalLevelLabel {
|
|
get {
|
|
this.__mt__signalLevelLabel = ((MonoTouch.UIKit.UILabel)(this.GetNativeField("_signalLevelLabel")));
|
|
return this.__mt__signalLevelLabel;
|
|
}
|
|
set {
|
|
this.__mt__signalLevelLabel = value;
|
|
this.SetNativeField("_signalLevelLabel", value);
|
|
}
|
|
}
|
|
}
|
|
}
|