This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Eto.Forms; | |
using Eto.Drawing; | |
using System.Threading.Tasks; | |
using System.Threading; | |
namespace EtoLoadingScreen.Desktop | |
{ | |
public partial class MainForm : Form | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<Form xmlns="http://schema.picoe.ca/eto.forms" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="My Eto Form" ClientSize="400, 350" Padding="10"> | |
<StackLayout> | |
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch"> | |
<TreeGridView> | |
<GridColumn HeaderText="Some Column"> | |
<TextBoxCell Binding="{Binding MyProperty}"/> | |
</GridColumn> | |
</TreeGridView> | |
</StackLayoutItem> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Eto.Forms; | |
using Eto.Drawing; | |
using System.Linq; | |
using System.Diagnostics; | |
namespace TestDropFile | |
{ | |
public partial class MainForm : Form | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Eto.Forms; | |
using Eto.Drawing; | |
namespace Eto.Forms | |
{ | |
/// <summary> | |
/// A dialog that sizes to its content automatically | |
/// </summary> | |
public class AutoSizingDialog<T> : Dialog<T> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Eto.Forms; | |
using Eto.Drawing; | |
namespace Eto.Test | |
{ | |
class MyItem | |
{ | |
public int SelectedItem { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Eto.Forms; | |
using Eto.Drawing; | |
using System.ComponentModel; | |
using System.Windows.Input; | |
using System.Linq.Expressions; | |
namespace MyApp1 | |
{ | |
public class MyViewModel : INotifyPropertyChanged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Eto.Forms; | |
using Eto.Drawing; | |
namespace MyCollapserForm | |
{ | |
public class MainForm : Dialog<bool> | |
{ | |
class L : Label | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scriptcontext | |
import rhinoscriptsyntax as rs | |
import clr | |
import sys | |
clr.AddReference("Eto") | |
clr.AddReference("Rhino.UI") | |
from Rhino.UI import * | |
from Eto.Forms import Form, Dialog, Label, TextBox, StackLayout, Orientation, Button, HorizontalAlignment, VerticalAlignment, TextAlignment, NumericUpDown, MessageBox, DropDown, CheckBox, TableLayout, StackLayoutItem, DynamicLayout, Control, Panel, Form | |
from Eto.Drawing import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using swc = System.Windows.Controls; | |
using swi = System.Windows.Input; | |
using Eto; | |
using Eto.Forms; | |
using Eto.Drawing; | |
namespace TestWpfSpellCheckMenuItem | |
{ | |
class Startup |
NewerOlder