Skip to content

Commit

Permalink
[client] 사용자 속성창에 중복 로그인 허용 여부 표시
Browse files Browse the repository at this point in the history
- bool 텍스트를 체크박스로 변경
  • Loading branch information
powerumc committed Aug 5, 2019
1 parent e19d043 commit ff63dbc
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,11 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
Content="{Binding UserInfo.ModificationInfo.ID}" />
<HeaderedContentControl Header="{x:Static p:Resources.Label_UserAuthority}"
Content="{Binding UserInfo.Authority}" />
<HeaderedContentControl Header="{x:Static p:Resources.Label_AllowMultiLogin}"
Content="{Binding UserInfo.AllowMultiLogin}" />
<HeaderedContentControl Header="{x:Static p:Resources.Label_AllowMultiLogin}">
<HeaderedContentControl.Content>
<CheckBox HorizontalAlignment="Left" IsChecked="{Binding Path=DataContext.UserInfo.AllowMultiLogin}" IsHitTestVisible="False" />
</HeaderedContentControl.Content>
</HeaderedContentControl>
</ncpc:HeaderedContentList>

</UserControl>

0 comments on commit ff63dbc

Please sign in to comment.