프로젝트

일반

사용자정보

개정판 702abd98

ID702abd98a3015c2b2ff6a1751f3eb45ecb5225e0
상위 d3dc9637
하위 a2488f05

humkyung 이(가) 6년 이상 전에 추가함

fixed issue #540: Place 버튼을 눌러 심볼 생성

차이점 보기:

KCOM/Controls/Symbol.xaml
50 50
                    </Grid.RowDefinitions>
51 51
                    
52 52
                    <StackPanel Grid.Row="0" Orientation="Vertical">
53
                        <!--<TextBlock Text="Symbol" FontSize="15"/>-->
54 53
                        <Grid Margin="0,10">
55 54
                            <Grid.ColumnDefinitions>
56 55
                                <ColumnDefinition Width="3*"/>
......
61 60
                            <Button Content="Register" Grid.Column="1" Click="Create_Symbol" Margin="5,0,0,0" FontWeight="Normal" Padding="5" Background="#3d3d3d" Foreground="White"/>
62 61
                            <Button Content="Rename" Grid.Column="2" Click="Rename_Symbol" Margin="5,0,0,0" FontWeight="Normal" Padding="5" Background="#3d3d3d" Foreground="White"/>
63 62
                            <Button Content="Remove" Grid.Column="3" Click="Remove_Symbol" Margin="5,0,0,0" FontWeight="Normal" Padding="5"  Background="#3d3d3d" Foreground="White"/>
64

  
65
                            <!--<Button Content="Register" Grid.Column="1" Click="Create_Symbol" Margin="5,0,0,0" Padding="5" Background="#3d3d3d" Foreground="White"/>
66
                            <Button Content="Rename" Grid.Column="2" Click="Rename_Symbol" Margin="5,0,0,0" Padding="5" Background="#3d3d3d" Foreground="White"/>
67
                            <Button Content="Remove" Grid.Column="3" Click="Remove_Symbol" Margin="5,0,0,0" Padding="5"  Background="#3d3d3d" Foreground="White"/>-->
68 63
                        </Grid>
69
                        <TextBlock Text="[Tip : Double Click]" FontSize="10" HorizontalAlignment="Right"/>
64
                        <Grid Margin="0,10">
65
                            <Grid.ColumnDefinitions>
66
                                <ColumnDefinition Width="1*"/>
67
                                <ColumnDefinition Width="3*"/>
68
                            </Grid.ColumnDefinitions>
69
                            <Button Content="Place" Click="Place_Symbol" Grid.Column="0"  Margin="5,0,0,0" FontWeight="Normal" Padding="5" Background="#3d3d3d" Foreground="White"/>
70
                            <TextBlock Text="[Tip : Double Click]" Grid.Column="1" FontSize="10" VerticalAlignment="Center" HorizontalAlignment="Right"/>
71
                        </Grid>
70 72
                    </StackPanel>
71 73
                    <ScrollViewer x:Name="ScView" Grid.Row="1" >
72 74
                        <ListBox x:Name="lstSymbolPrivate" Background="#f5f5f5" FontWeight="Normal" ItemTemplate="{StaticResource SymbolTemplate_Private}" 
......
77 79
                            <telerik:ListBoxDragDrop.Behavior>
78 80
                                <telerik:ListBoxDragDropBehavior AllowReorder="True" />
79 81
                            </telerik:ListBoxDragDrop.Behavior>
80
                            
81
                            <!--<ListBox.ItemsPanel>
82
                    <ItemsPanelTemplate>
83
                        <WrapPanel:WrapPanel />
84
                    </ItemsPanelTemplate>
85
                </ListBox.ItemsPanel>-->
86
                            <!--<telerik:ListBoxDragDrop></telerik:ListBoxDragDrop>-->
82
                                                       
87 83
                        </ListBox>
88 84
                    </ScrollViewer>
89 85
                </Grid>
......
97 93
                    </Grid.RowDefinitions>
98 94

  
99 95
                    <StackPanel Grid.Row="0" Orientation="Vertical">
100
                        <!--<TextBlock Text="Symbol" FontSize="15"/>-->
101 96
                        <Grid Margin="0,10">
102 97
                            <Grid.ColumnDefinitions>
103 98
                                <ColumnDefinition Width="1*"/>
104 99
                                <ColumnDefinition Width="3*"/>
105 100
                            </Grid.ColumnDefinitions>
106
                            <!--<Button Content="Register" Grid.Column="1" Click="Create_Symbol" Margin="5,0,0,0" FontWeight="Normal" Padding="5" Background="#3d3d3d" Foreground="White"/>
107
                            <Button Content="Rename" Grid.Column="2" Click="Rename_Symbol" Margin="5,0,0,0" FontWeight="Normal" Padding="5" Background="#3d3d3d" Foreground="White"/>
108
                            <Button Content="Remove" Grid.Column="3" Click="Remove_Symbol" Margin="5,0,0,0" FontWeight="Normal" Padding="5"  Background="#3d3d3d" Foreground="White"/>-->
109

  
110
                            <!--<Button Content="Register" Grid.Column="1" Click="Create_Symbol" Margin="5,0,0,0" Padding="5" Background="#3d3d3d" Foreground="White"/>
111
                            <Button Content="Rename" Grid.Column="2" Click="Rename_Symbol" Margin="5,0,0,0" Padding="5" Background="#3d3d3d" Foreground="White"/>
112
                            <Button Content="Remove" Grid.Column="3" Click="Remove_Symbol" Margin="5,0,0,0" Padding="5"  Background="#3d3d3d" Foreground="White"/>-->
101
                            
113 102
                            <TextBlock VerticalAlignment="Center">Department</TextBlock>
114 103
                            <telerik:RadComboBox EmptyText="ALL" Grid.Column="1"  HorizontalAlignment="Stretch" Margin="5" DropDownWidth="*" Background="White" BorderBrush="#d6d6d6" x:Name="deptlist"
115 104
                                                  ClearSelectionButtonVisibility="Visible" ClearSelectionButtonContent="Show All" SelectionChanged="deptlist_SelectionChanged"/>
116 105

  
117 106
                        </Grid>
118
                        <TextBlock Text="[Tip : Double Click]" FontSize="10" HorizontalAlignment="Right"/>
107
                        <Grid Margin="0,10">
108
                            <Grid.ColumnDefinitions>
109
                                <ColumnDefinition Width="1*"/>
110
                                <ColumnDefinition Width="3*"/>
111
                            </Grid.ColumnDefinitions>
112
                            <Button Content="Place" Grid.Column="0"  Click="Remove_Symbol"  Margin="5,0,0,0" FontWeight="Normal" Padding="5" Background="#3d3d3d" Foreground="White"/>
113
                            <TextBlock Text="[Tip : Double Click]" Grid.Column="1" FontSize="10" VerticalAlignment="Center" HorizontalAlignment="Right"/>
114
                        </Grid>
119 115
                    </StackPanel>
120 116
                    <ScrollViewer x:Name="ScView_Public" Grid.Row="1" >
121 117
                        <ListBox x:Name="lstSymbolPublic" Background="#f5f5f5" FontWeight="Normal" ItemTemplate="{StaticResource SymbolTemplate_Private}" MouseDoubleClick="Move_Symbol" PreviewMouseWheel ="lstSymbolPublic_PreviewMouseWheel">
122 118
                            <telerik:ListBoxDragDrop.Behavior>
123 119
                                <telerik:ListBoxDragDropBehavior AllowReorder="True" />
124 120
                            </telerik:ListBoxDragDrop.Behavior>
125
                            <!--<ListBox.ItemsPanel>
126
                    <ItemsPanelTemplate>
127
                        <WrapPanel:WrapPanel />
128
                    </ItemsPanelTemplate>
129
                </ListBox.ItemsPanel>-->
130
                            <!--<telerik:ListBoxDragDrop></telerik:ListBoxDragDrop>-->
131 121
                        </ListBox>
132 122
                    </ScrollViewer>
133 123
                </Grid>

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)