<?xml version="1.0"?>
-<Border BorderWidth="1" MinimumSize="20;20" Height="{../TemplatedHeight}" Width="{../TemplatedWidth}">
- <HorizontalStack Margin="1" Height="{../../TemplatedHeight}" Width="{../../TemplatedWidth}">
+<Border BorderWidth="1" Height="{../TemplatedHeight}" Width="{../TemplatedWidth}">
+ <HorizontalStack Margin="1" Height="{../../TemplatedHeight}" Width="{../../TemplatedWidth}" >
<Scroller Name="scroller1" Height="{../../../TemplatedHeight}" Width="{../../../TemplatedWidth}"
- Margin="2" VerticalScrolling="true" ScrollY="{../scrollbar1.Value}">
- <VerticalStack Width="{../../../../TemplatedWidth}" Height="-1"
- Name="List" Margin="0" VerticalAlignment="Top" />
+ Margin="2" VerticalScrolling="true" ScrollY="{../scrollbar1.Value}"
+ ValueChanged="../../../_scroller_ValueChanged">
+ <VerticalStack Width="{../../../../TemplatedWidth}" Height="-1" MinimumSize="100;100"
+ Name="List" Margin="0" VerticalAlignment="Top"
+ LayoutChanged="../../../../_list_LayoutChanged"/>
</Scroller>
<ScrollBar Name="scrollbar1" Value="{../scroller1.ScrollY}"
Maximum="{../scroller1.MaximumScroll}" Orientation="Vertical"
- Width="10" Height="{../../../TemplatedHeight}" />
+ Width="14" Height="{../../../TemplatedHeight}" />
</HorizontalStack>
</Border>
\ No newline at end of file
int frameCpt = 0;
int idx = 0;
string[] testFiles = {
+ "testCombobox.goml",
+ "1.crow",
"0.crow",
"testPopper.goml",
"testTextBox.crow",
"2.crow",
"test1.goml",
"testWindow2.goml",
-// "testCombobox.goml",
+
"testWindow3.goml",
"testWindow.goml",
"testCheckbox.goml",
return;
NotifyValueChanged ("alignment", Enum.Parse(typeof(Alignment), rb.Caption));
}
- IList<Color> testList = null;
+ IList<Color> testList = Color.ColorDic.ToList();
public IList<Color> TestList {
set{
testList = value;
<?xml version="1.0"?>
-<ComboBox/>
\ No newline at end of file
+<VerticalStack>
+ <CheckBox IsChecked="false" Caption="test" Width="-1" Background="hgradient|0:LimeGreen|1:Transparent"/>
+ <CheckBox IsChecked="false" Caption="test" Width="-1" Background="hgradient|0:LimeGreen|1:Transparent"/>
+ <CheckBox IsChecked="true" Caption="test" Width="-1" Background="hgradient|0:LimeGreen|1:Transparent"/>
+ <CheckBox IsChecked="false" Caption="test" Width="-1" Background="hgradient|0:LimeGreen|1:Transparent"/>
+</VerticalStack>
\ No newline at end of file