Normalized line endings in platform.cs code
This commit is contained in:
parent
7c315661b9
commit
7967bdebf7
|
@ -34,81 +34,81 @@ namespace Ooui.Forms
|
||||||
_renderer = new PlatformRenderer (this);
|
_renderer = new PlatformRenderer (this);
|
||||||
|
|
||||||
MessagingCenter.Subscribe(this, Page.AlertSignalName, (Page sender, AlertArguments arguments) =>
|
MessagingCenter.Subscribe(this, Page.AlertSignalName, (Page sender, AlertArguments arguments) =>
|
||||||
{
|
{
|
||||||
var alert = new Div
|
var alert = new Div
|
||||||
{
|
{
|
||||||
ClassName = "modal-dialog"
|
ClassName = "modal-dialog"
|
||||||
};
|
};
|
||||||
|
|
||||||
var content = new Div
|
var content = new Div
|
||||||
{
|
{
|
||||||
ClassName = "modal-content"
|
ClassName = "modal-content"
|
||||||
};
|
};
|
||||||
|
|
||||||
var header = new Div
|
var header = new Div
|
||||||
{
|
{
|
||||||
ClassName = "modal-header"
|
ClassName = "modal-header"
|
||||||
};
|
};
|
||||||
|
|
||||||
var closeButton = new Button
|
var closeButton = new Button
|
||||||
{
|
{
|
||||||
ClassName = "close"
|
ClassName = "close"
|
||||||
};
|
};
|
||||||
|
|
||||||
closeButton.AppendChild(new Span(HttpUtility.HtmlDecode("×")));
|
closeButton.AppendChild(new Span(HttpUtility.HtmlDecode("×")));
|
||||||
closeButton.Clicked += CloseAlert;
|
closeButton.Clicked += CloseAlert;
|
||||||
|
|
||||||
var h4 = new Heading(4)
|
var h4 = new Heading(4)
|
||||||
{
|
{
|
||||||
Text = arguments.Title
|
Text = arguments.Title
|
||||||
};
|
};
|
||||||
|
|
||||||
header.AppendChild(closeButton);
|
header.AppendChild(closeButton);
|
||||||
header.AppendChild(h4);
|
header.AppendChild(h4);
|
||||||
|
|
||||||
content.AppendChild(header);
|
content.AppendChild(header);
|
||||||
content.AppendChild(new Div()
|
content.AppendChild(new Div()
|
||||||
{
|
{
|
||||||
ClassName = "modal-body",
|
ClassName = "modal-body",
|
||||||
Text = arguments.Message
|
Text = arguments.Message
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(arguments.Cancel))
|
if (!string.IsNullOrEmpty(arguments.Cancel))
|
||||||
{
|
{
|
||||||
var footer = new Div()
|
var footer = new Div()
|
||||||
{
|
{
|
||||||
ClassName = "modal-footer"
|
ClassName = "modal-footer"
|
||||||
};
|
};
|
||||||
|
|
||||||
var cancel = new Button(arguments.Cancel)
|
var cancel = new Button(arguments.Cancel)
|
||||||
{
|
{
|
||||||
ClassName = "btn btn-default"
|
ClassName = "btn btn-default"
|
||||||
};
|
};
|
||||||
cancel.Clicked += CloseAlert;
|
cancel.Clicked += CloseAlert;
|
||||||
|
|
||||||
footer.AppendChild(cancel);
|
footer.AppendChild(cancel);
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(arguments.Accept))
|
if (!string.IsNullOrEmpty(arguments.Accept))
|
||||||
{
|
{
|
||||||
var accept = new Button(arguments.Accept)
|
var accept = new Button(arguments.Accept)
|
||||||
{
|
{
|
||||||
ClassName = "btn btn-default"
|
ClassName = "btn btn-default"
|
||||||
};
|
};
|
||||||
accept.Clicked += CloseAlert;
|
accept.Clicked += CloseAlert;
|
||||||
|
|
||||||
footer.AppendChild(accept);
|
footer.AppendChild(accept);
|
||||||
}
|
}
|
||||||
|
|
||||||
content.AppendChild(footer);
|
content.AppendChild(footer);
|
||||||
}
|
}
|
||||||
|
|
||||||
alert.AppendChild(content);
|
alert.AppendChild(content);
|
||||||
_renderer.AppendChild(alert);
|
_renderer.AppendChild(alert);
|
||||||
|
|
||||||
void CloseAlert(object s, EventArgs e)
|
void CloseAlert(object s, EventArgs e)
|
||||||
{
|
{
|
||||||
_renderer.RemoveChild(alert);
|
_renderer.RemoveChild(alert);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue