Files
baron-sso-sample/BaronSoftware.SSO/Features/LoginWindow/LoginWindow.xaml
T
b17314andClaude Opus 4.8 2af3bf67db 샘플 ClientId 수정 및 로그인 창 조정
- appsettings.json: ClientId를 콘솔 등록값(4e4c88fc-...)으로 수정해 invalid_client 해결
- LoginWindow.xaml: 로그인 창 크기 조정 (520x760 → 1200x700)
- LoginWindow.xaml.cs: WebView2 UserDataFolder 이름 변경 (WebView2 → SSOWebView2)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-07 14:42:34 +09:00

12 lines
496 B
XML

<Window x:Class="BaronSoftware.SSO.LoginWindow"
x:ClassModifier="internal"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wv2="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf"
Title="BARON 로그인" Height="700" Width="1200"
WindowStartupLocation="CenterScreen">
<Grid>
<wv2:WebView2 x:Name="webview" />
</Grid>
</Window>