mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-23 00:46:03 +01:00
31 lines
643 B
C#
31 lines
643 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Drawing;
|
|||
|
using System.Data;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace XenAdmin.Controls
|
|||
|
{
|
|||
|
public partial class SrProvisioningMethod : UserControl
|
|||
|
{
|
|||
|
public SrProvisioningMethod()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
internal bool Gfs2
|
|||
|
{
|
|||
|
get { return radioButtonGfs2.Checked; }
|
|||
|
}
|
|||
|
|
|||
|
internal bool Lvm
|
|||
|
{
|
|||
|
get { return radioButtonLvm.Checked; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|