mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
Hide properties from designer, it should not autogenerate any code for them
This commit is contained in:
parent
60916e1080
commit
8297f4cd75
@ -33,18 +33,21 @@ namespace DS4Windows.DS4Forms
|
||||
set { label1.Text = value; }
|
||||
}
|
||||
|
||||
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
||||
public int SelectedIndex
|
||||
{
|
||||
get { return cbCulture.SelectedIndex; }
|
||||
set { cbCulture.SelectedIndex = value; }
|
||||
}
|
||||
|
||||
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
||||
public string SelectedText
|
||||
{
|
||||
get { return cbCulture.SelectedText; }
|
||||
set { cbCulture.SelectedText = value; }
|
||||
}
|
||||
|
||||
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
||||
public object SelectedValue
|
||||
{
|
||||
get { return cbCulture.SelectedValue; }
|
||||
|
Loading…
Reference in New Issue
Block a user